Defaults with the rootlogger

2008-05-06 Thread lp_1431
Are there any defaults set when the rootlogger is called? If there are, what are they? Thanks... -- View this message in context: http://www.nabble.com/Defaults-with-the-rootlogger-tp17098584p17098584.html Sent from the Log4j - Users mailing list archive at Nabble.com. ---

Re: How can I combine using DailyRollingFileAppender with some sort of limit on file size?

2008-05-06 Thread Curt Arnold
On May 7, 2008, at 12:50 AM, Katy Podolner wrote: Since the MaxFileSize and MaxBackupIndex aren't inherited from the RollingFileAppender I can't use those when configuring appender of class DailyRollingFileAppender in my log4j.xml However I'd like to prevent a situation where the error

Re: What is the deafult logging level

2008-05-06 Thread Jacob Kjome
I believe it is debug. Jake On Tue, 6 May 2008 22:47:02 -0700 (PDT) lp_1431 <[EMAIL PROTECTED]> wrote: Please let me know what is the default logging level, if we do not set the level in the properties file. Is it DEBUG.? Thanks.. -- View this message in context: http://www.nabble.com/What

How can I combine using DailyRollingFileAppender with some sort of limit on file size?

2008-05-06 Thread Katy Podolner
Since the MaxFileSize and MaxBackupIndex aren't inherited from the RollingFileAppender I can't use those when configuring appender of class DailyRollingFileAppender in my log4j.xml However I'd like to prevent a situation where the error logs take up a non limited amount of disk space. I've se

What is the deafult logging level

2008-05-06 Thread lp_1431
Please let me know what is the default logging level, if we do not set the level in the properties file. Is it DEBUG.? Thanks.. -- View this message in context: http://www.nabble.com/What-is-the-deafult-logging-level-tp17097755p17097755.html Sent from the Log4j - Users mailing list archive at N

RE: - Setting logging levels

2008-05-06 Thread Bender Heri
If the string which you supply to logger.info() must first be constructed (normally a expensive operation which you dont want to do if info is not enabled) you can avoid this by: if ( logger.isInfoEnabled() ) { logger.info( prepareString( args ) ); } Without this surrounding if the string w

RE: Setting logging levels

2008-05-06 Thread Katy Podolner
You can also define the log level in the Appender , using the following (useful when trying to define 2 different loggers with different log level for the same package/class) --Katy -Original Message- From: Robert Pepersack [mailto:[EMAIL PROT

Re: Setting logging levels

2008-05-06 Thread Robert Pepersack
You attach your logging level to your logger. You can specify your log4j configuration properties in file by using PropertyConfigurator.configure(String configFilename). You can also configure log4j by using some of the other methods of PropertyConfigurator. For example, you can create a java

Setting logging levels

2008-05-06 Thread lp_1431
I m new to log4j. Is the logging level put in the properties file is a default logging level that is set? How is that logging level accessed when we write... logger.info("Info message"); in the main program. Please let me know about this. THANKS -- View this message in context: http://www.na