On Fri, Jul 25, 2008 at 1:48 AM, VenkataRavikanth <[EMAIL PROTECTED]> wrote: > Hi, > > Apart from log4j, is there any java api for constructing and sending > syslog messages.
Starting with JDK 1.4, Sun has introduced java.util.logging framework. Its packaged along with the JDK and is available in all JVMs. Even with this, most of the applications use only log4j. But instead of using it directly, people generally create a wrapper over it (and very often fail misserbly) or they use commons logging. Apache's Commons Logging is a logging framework wrapper. It will try to use whichever logger is available at runtime in its classpath. hth, Natarajan _______________________________________________ To unsubscribe, email [EMAIL PROTECTED] with "unsubscribe <password> <address>" in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
