| Author |
Problem with log4j
|
venkatesh loganathan
Greenhorn
Joined: Aug 24, 2004
Posts: 14
|
|
Hi all Iam not able to log messages to a file when i try to access log information froma file.I have a log4jconfig -- file like below --------------------------------------------------------------------------- log4j.rootLogger=debug, stdout, R log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout=org.apache.log4j.PatternLayout # Pattern to output the caller's file name and line number. log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F\:%L) - %m%n log4j.appender.R=org.apache.log4j.RollingFileAppender log4j.appender.R.File=example.log --------------------------------------------------------------------------- And my program which reads this file for logging goes like this final Logger logger = Logger.getLogger(EditShopperAction.class); PropertyConfigurator.configure("LogConfig.properties"); logger.debug("Here is some DEBUG"); logger.info("Here is some INFO"); logger.warn("Here is some WARN"); logger.error("Here is some ERROR"); logger.fatal("Here is some FATAL"); Can someone help me in this. Thanks in advance Venkatesh Loganthan
|
 |
 |
|
|
subject: Problem with log4j
|
|
|