Log4j2 PatternLayout Cheatsheet
In Log4j2 for Kotlin I’ve showed you how to configure a basic logger with log4j2. If you use a PatternLayout like this
In Log4j2 for Kotlin I’ve showed you how to configure a basic logger with log4j2. If you use a PatternLayout like this
Motivation Logging is a common good practice in software engineering. It enables you to monitor applications in production to gather information about crashes and other malfunctions for further analysis. It is the “little brother” of debugging and often a precursor for setting up test cases which can lead to reproducing the bugs on the developers…