vote up 0 vote down star

Hi I'm using log4j api for logging purpose. When I use the following code to append to the appender, it's showing "addAppender() is undefined for the type Logger" error

FileAppender myAppender = new FileAppender(new PatternLayout(),"output.log");
Logger.getLogger(ConfigFileReader.class.getName()).addAppender(myAppender);

Can anyone tell me what should I do to debug this error?

flag

0% accept rate

2 Answers

vote up 6 vote down

Are you sure that you are importing the correct Logger class? A common error is to import java.util.Logger instead of the Logger from the log4j package.

link|flag
vote up -2 vote down

Hi, You are correct.. I have made a common error as u said.. Thanks a lot.....

link|flag
why not mark my answer as correct? – Martin OConnor Jan 5 at 16:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.