LogBack ConsoleAppender to send logs to console

1. Overview In this article, we will learn the LogBack ConsoleAppender that sends logs to the console. The Logback library is a logging framework and a successor of the famous log4j project.  2. LogBack ConsoleAppender The LogBack ConsoleAppender outputs the log statement to the console. By default, it behaves the same as System.out statements in your code. It … Read more

LogBack xml spring boot

1. Overview Logback is designed as a successor to the popular log4j project. You can configure LogBack either programmatically or using the configuration script. The configuration script can either be in XML or Groovy. In this article, we will discuss the LogBack XML Spring Boot configuration. 2. Basic terminologies First, let’s see the below basic … Read more