Writing log messages to FileAppender

2005-09-20 Thread Vin Karthik
Hi All, I have an issue with writing log messages to FileAppender.I have 4 logger different loggers for 4 different modules in the properties file and each time i pass the module name to create an instance of that logger.The 4 loggers have 4 different File Appenders each pointing to a

Re: Writing log messages to FileAppender

2005-09-20 Thread James Stauffer
The FileAppenders automatically create the file so they are ready to write to it. AFAIK there is no way to delay creating the file until needed unless you create your own appender. On 9/20/05, Vin Karthik [EMAIL PROTECTED] wrote: Hi All, I have an issue with writing log messages to

Re: Writing log messages to FileAppender

2005-09-20 Thread Arunkumar Soundararajan
Hi Karthik yes, I have faced this issue, Can you please tell me what the file size you have specified. Ideally it should not cross 10 MB as per the specs. There is a problem in closing log files during rolling. Arun On Tue, 2005-09-20 at 18:39, Vin Karthik wrote: Hi All, I have an issue