Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 1
    Well yea ... but now you need to modify your codebase to use this API as well as or instead of slf4j. If you use it instead of slf4j 1) it probably needs to be richer, 2) lots of (at least) imports need to be changed, and 3) this new layer in front of slf4j adds an extra logging overhead. Commented Oct 7, 2018 at 23:17
  • 5
    Be also aware that when you go for this solution, the class that does the actual logging will not be logged (because the logger is initialized with LevelLogger), which is not a good thing because it's generally very useful information. Commented Oct 19, 2018 at 11:32