Tag: Log
Introduction In this tutorial I will show you how logging configuration in Spring Boot applications by overriding Spring Boot’s default logging mechanism by creating logback.xml file under src/main/resources directory. You may also read Simple log4j configuration in java and Log4j Configurations – Controlling Logging to Multiple Files By default, slf4j logging is already included in the…
Posted in Spring Boot
Log4j is a logging library for Java applications and the purpose of inserting log statements into the code is a low-tech method for debugging it. It may also be the only way because debuggers are not always available or applicable. This is often the case for distributed applications.
Posted in Log4J