Right now we are using a customized logger method for our application but now we have a stand alone code for which we need to write to a separate log file. We have little idea about log4j. I just want to know where to change properties if any so that i don't disturb the existing logger application as well as we write our logs into new log file.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
First define a file appender:
Then point your package to use this appender:
The last line is important if you do not want your package to inherit the global appender. Doing so will result in the log messages from mypackage also printed at the default appender. |
|||
|
|
|
in log4j you can direct log entries to separate files based upon pacakge name. log4j.logger.your.package1= LOG,STDOUT log4j.additivity.your.package1=false log4j.logger.your.package2= DEBUG, STDOUT log4j.additivity.your.package2=false |
|||
|
|
I use XML configuration.
|
|||
|
|
|
Just use FileAppender and specify a new filename in the constructor. |
|||
|
|