I am trying to write separate logs for different packages using log4j. I am able to write separate logs for different levels using a customize appender.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need two appender like this:
Then you define your packages:
The last line(additivity) is needed to not have your package inherit the global appender. Doing so will result in the log messages from mypackage also printed at the default appender.