hiho guys i want to ask you for the best practice (according to you) for writing a log in different files, for example i want info severity to be logged in info.log, debug severity in debug.log and so on... and no i dont want to use different Logger for each severity
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
We had an application that used to do this (separate log files per severity), and it ended up providing us no value. All it ends up doing is A) complicating your debugging efforts, and B) taking up disk space. Logging all severities to the same file is more convenient and easier to work with. |
|||||||
|