I am using logback/slf4j to do my logging. I want to parse my log file to analyze some data, so instead of parsing a great big file (mostly consisting of debug statements) I want to have two logger instances which each log to a separate file; one for analytics and one for all purpose logging. Does anyone know if this is possible with Logback, or any other logger for that matter?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It's very possible to do something like this in logback. Here's an example configuration:
Then you'd setup two separate loggers, one for everything and one to log analytics data like so:
|
||||
|
Its possible with log4j, so I assume that logback has only improved on that. The classes should each declare their own static logger as a default convention, then in the configuration you would declare multiple categories and appenders. |
|||||
|