TimeStamp in log4j

2001-11-14 Thread U.M.S., Lebbai
Hi, I am getting the TIMESTAMP in LONG format by log4j automatically. Is there any way to set it in my preferred format, say "mmddHHMMSS". shaikna -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: using log4J for auditing?

2001-11-14 Thread Leathers, Burton
Noah, I am in the midst of building a facility based on log4j which handles auditing, tracing, performance and chargeback records. The key is to note that the sets of categories appropriate to each of these activities may differ and that simple text records are rarely sufficient. I have made ext

using log4J for auditing?

2001-11-14 Thread Noah Davis
Still new to Log4J and I want to get an idea if it's really the right tool for what I need. In some respects it's spot on - I need to be able to log exceptions at different priorities and categories. ok, so far so good. However, there's another requirement which is somewhat different, and that's

Re: Auto-reconfiguration?

2001-11-14 Thread Qaz Zaq
None of the API does what I need. configureAndWatch may work but it requires a filename. Basically, I just want log4j to re-read what ever config file it read. Something like a PropertyConfigurator.configure()that's it. The method must not accept any parameters. I'll try reset, but is tha

Re: Auto-reconfiguration?

2001-11-14 Thread T Master
Look at PropertyConfigurator Read the javadocs on that. - Original Message - From: "Qaz Zaq" <[EMAIL PROTECTED]> To: "Log4J Users List" <[EMAIL PROTECTED]> Sent: Wednesday, November 14, 2001 11:20 AM Subject: Auto-reconfiguration? > I dropped out log4j.properties in the classpath, and

Auto-reconfiguration?

2001-11-14 Thread Qaz Zaq
I dropped out log4j.properties in the classpath, and everything is configured nicely. Now, how do I trigger a reconfiguration when the log4j.properties file changes? I perused the API, but could not find anything suitable. Thanks. __ Do You Yahoo

How to configure the Timestamp using the XMLLayout class ?

2001-11-14 Thread adi Ekstein
Hi, Im using the XMLLayout class - but the timestamp keep appearing in a Miliseconds foramt. How do I configure this to show the Date/time format ? Thanks DD -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Tunneling log messages

2001-11-14 Thread Alan Pearlman Spencer
Take a look at: org.apache.log4j.net.SimpleSocketServer It does what you need, I think... Alan. -Original Message- From: Qaz Zaq [mailto:[EMAIL PROTECTED]] Sent: 13 November 2001 20:04 To: Log4J Users List Subject: RE: Tunneling log messages Which API do I use to re-log? Category.callA

Any recommended ways to build a separation layer for log4j ?

2001-11-14 Thread Sven Gorts
Hi, I'd like to use log4j for the logging of my application. However, to remain flexible towards other logging tools and future versions of log4j building a separation layer between log4j and the application seems nessecary. I suppose that some other people already have experience with this. S