Log4j 2 Configuration Using YAML
A hands-on tutorial on configuring Log4J using YAML.
Join the DZone community and get the full member experience.
Join For FreeFor the different Log4J 2 configuration options, you can explore these related posts:
- Log4J 2 Configuration: Using Properties File
- Log4J 2 Configuration: Using XML
- Log4J 2 Configuration: Using JSON
In this post, I will discuss how to configure Log4J 2 with YAML.
Maven Dependencies for YAML Configuration
To use Log4J2, you need to add the required Log4J 2 dependencies in your Maven POM, as described here. For YAML configuration, you additionally need Jackson, a suite of data-processing tools for Java. The YAML support for Log4J 2 uses two Jackson packages: Jackson dataformat and Jackson databind whose dependencies must be present in your Maven POM.
The following code snippet shows the dependencies required to use YAML to configure Log4J 2.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.7.3</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.5.4</version>
</dependency>
. . .
Creating a Logger
Before we start configuring Log4J 2 using YAML, let's create a logger class that uses the Log4J 2 API to log messages.
Log4J2YamlConf.java
package guru.springframework.blog.log4j2yaml;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
public class Log4J2YamlConf {
private static Logger logger = LogManager.getLogger();
public void performSomeTask(){
logger.debug("This is a debug message");
logger.info("This is an info message");
logger.warn("This is a warn message");
logger.error("This is an error message");
logger.fatal("This is a fatal message");
}
}
We will use JUnit to test the preceding class.
Log4J2YamlConfTest.java
package guru.springframework.blog.log4j2yaml;
import org.junit.Test;
import static org.junit.Assert.*;
public class Log4J2YamlConfTest {
@Test
public void testPerformSomeTask() throws Exception {
Log4J2YamlConf log4J2YamlConf = new Log4J2YamlConf();
log4J2YamlConf.performSomeTask();
}
}
Configuring Console and File Appenders
In order to configure Log4J 2 using YAML, you need a YAML configuration file, named either log4j2.yaml or log4j2.ym in the project classpath.
The skeleton of a YAML configuration file is this.
Configuration:
Properties:
Appenders:
Loggers:
The syntax of the log4j2.yaml file above is composed of a Configuration key with a list of properties: Properties, Appenders, and Loggers.
Let’s start by configuring two appenders to write log messages to the console and a file. We will also configure an application-specific logger and the root logger to use the appenders, like this.
Configutation:
name: Default
Properties:
Property:
name: log-path
value: "logs"
Appenders:
Console:
name: Console_Appender
target: SYSTEM_OUT
PatternLayout:
pattern: "[%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{1} - %msg%n"
File:
name: File_Appender
fileName: ${log-path}/logfile.log
PatternLayout:
pattern: "[%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{1} - %msg%n"
Loggers:
Root:
level: debug
AppenderRef:
- ref: Console_Appender
Logger:
- name: guru.springframework.blog.log4j2yaml
level: debug
AppenderRef:
- ref: File_Appender
level: error
In the configuration code above:
- Line 4 – Line 7: We declared a log-path property accessible to the other parts of the configuration code.
- Line 9 – Line 21: We configured the Console and File appenders.
- Line 23 – 35: We configured an application-specific logger for all the logger classes of the guru.springframework.blog.log4j2yaml package. This logger writes error and lower level log messages to the file appender. We also configured the root logger to log debug and lower level messages to the configured console appender.
If we run the Log4J2YamlConfTest test class, Log4J 2 will generate log messages and send them both to the console and file, as shown in this figure.
Configuring a Rolling File Appender
In my earlier posts on configuring Log4J 2 using XML and JSON, I discussed the benefits of the rolling file appender and how to configure one. Additionally, you can refer the Log4J 2 manual to learn more about the rolling file. In YAML, you can configure a rolling file appender, like this.
. . .
RollingFile:
- name: RollingFile_Appender
fileName: ${log-path}/rollingfile.log
filePattern: "logs/archive/rollingfile.log.%d{yyyy-MM-dd-hh-mm}.gz"
PatternLayout:
pattern: "[%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{1} - %msg%n"
Policies:
SizeBasedTriggeringPolicy:
size: 1 KB
DefaultRollOverStrategy:
max: 30
. . .
In the code above:
- Line 3: We used the name value of RollingFile to define a name of this appender that loggers can use.
- Line 4 – Line 5: We used the filename and filePattern values to define the name of the file to write to and the pattern of the file name of the archived log file respectively.
- Line 8 -Line 10: We used the Policies property to define a sized-based triggering policy. For testing purpose, we set the size:1KB value to roll the log file once its size exceeds 1 KB.
- Line 11 – Line 12: We used the DefaultRolloverStrategy property with the max:30 value. This instructs Log4J 2 to keep up to 30 rolling files before deleting them.
To use the rolling file appender, add the appender reference to the logger, like this.
. . .
Loggers:
Root:
level: debug
AppenderRef:
- ref: Console_Appender
Logger:
- name: guru.springframework.blog.log4j2yaml
level: debug
AppenderRef:
- ref: File_Appender
level: error
- ref: RollingFile_Appender
level: debug
. . .
In Line 15 – Line 16 of the configuration code above, we added a reference to the rolling file appender with the debug level.
On running the Log4J2YamlConfTest test class, a rollingfile.log file is generated in the logs folder with debug and lower level log messages. Now if you run the Log4J2YamlConfTest test class couple of more times till the size of the rollingfile.log file exceeds 1 KB, Log4J 2 creates a .gz archive of the generated rolling file in the archive directory.
Logging Additivity
So far in our example, we have been using additivity to send messages sent to the file appender also to the console appender. You can override this default behavior by setting the additivity property of a logger to false.
The complete code of the log4j2.yaml file without additivity is this.
log4j2.yaml
Configutation:
name: Default
Properties:
Property:
name: log-path
value: "logs"
Appenders:
Console:
name: Console_Appender
target: SYSTEM_OUT
PatternLayout:
pattern: "[%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{1} - %msg%n"
File:
name: File_Appender
fileName: ${log-path}/logfile.log
PatternLayout:
pattern: "[%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{1} - %msg%n"
RollingFile:
- name: RollingFile_Appender
fileName: ${log-path}/rollingfile.log
filePattern: "logs/archive/rollingfile.log.%d{yyyy-MM-dd-hh-mm}.gz"
PatternLayout:
pattern: "[%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{1} - %msg%n"
Policies:
SizeBasedTriggeringPolicy:
size: 1 KB
DefaultRollOverStrategy:
max: 30
Loggers:
Root:
level: debug
AppenderRef:
- ref: Console_Appender
Logger:
- name: guru.springframework.blog.log4j2yaml
additivity: false
level: debug
AppenderRef:
- ref: Console_Appender
level: info
- ref: File_Appender
level: error
- ref: RollingFile_Appender
level: debug
In Line 47 – Line 48 of the code above, we configured a console appender with the level info for our logger. We also disabled additivity in Line 44 by adding the additivity:false value.
Now, when we run the test class, our logger will use the newly configured console appender instead of the one in the root logger. You can run the test class again to check that info and lower log messages are now getting sent to the console, as shown in this figure. You can see the debug level is no longer sent to the console.
For configuring additivity using XML and JSON, refer my earlier posts here, and also here. I also suggest reviewing the Log4J 2 documentation on the subject, where they have some good examples how this works.
Summary
Out of all the configuration options, YAML is the most compact and readable format. However, unlike properties and XML configurations, you need the additional Jackson JARs in your project to parse the YAML configuration file. If you are familiar with the XML or JSON format, you can use one of the several converters to convert your XML or JSON configurations to YAML, and also the other way around. One of the tools you can try is an online converter available here. However, as a note of caution, converters are not always 100% accurate. As a developer, use it for reference.
Published at DZone with permission of John Thompson, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments