How to perform persistent logging in log4j? Say when i see a log file with WARN log messages by giving command like debug cms stats WARN.. Now when i close this log file,again my default level i.e INFO messages get printed. I want my previous state messages i.e WARN messages to get printed.. How to perform??
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.
|
|
Persistence of interactive changes made to logger settings would be something that the application would need to take care of. As far as log4j is concerned, it simply reads a configuration from a properties file or XML file, and initializes. Adjustments made after that by application code are not persisted, and (AFAIK) there is no provision in log4j for doing that. (Yes I'm sure of that.) The best I can come up with is this page that talks about reloading the log4j configs while an application is running. AFAIK, that's not what you want. |
||||
|