Log4j Conversion Pattern Example
Logging is a critical feature of any application. In this tutorial, I will show you how to implement some useful Log4j
Conversion Patterns for writing the logging mechanism in Java development.
1. Introduction
Printing messages to the console is an integral part of the development testing and the debugging of a Java program. If developers are working on a Server side application, where they cannot see what’s going on inside the server, then their only visibility tool is a log file.
Without logs, developers cannot do any debugging or see what’s going on inside the application. Java has pretty handy System.out.println()
methods to print something on the console, which can also be routed to a log file but it is not sufficient for a real-world Java application.
If developers are running a Java program in Linux or Unix based systems, Log4j
or SLF4j
or any other logging framework offers a lot more features, flexibility, and improvement on message quality, which is not possible using the System.out.println()
statements.
1.1 What is Log4j?
Log4j is a simple, flexible, and fast Java-based logging framework. It is thread-safe and supports internationalization. We mainly have 3 components to work with Log4j
:
- Logger: It is used to log the messages
- Appender: It is used to publish the logging information to the destination like file, database, console etc
- Layout: It is used to format logging information in different styles
1.2 Log4j Conversion Pattern
To recall, a Log4j
Conversion Pattern specifies that the log messages are formatted by using a combination of literals, conversion characters, and the format modifiers. Consider the following pattern:
log4j.appender.ConsoleAppender.layout.ConversionPattern=[%-5p] %d %c - %m%n
Where:
- The percentage sign (
%
) is a prefix for any conversion characters -5p
is the format modifier for the conversion characterp
(i.e. priority). This justifies the priority name with a minimum of 5 characters
The above conversion pattern will format the log messages to something like this:
[DEBUG] 2017-11-14 21:57:53,661 DemoClass - This is a debug log message. [INFO ] 2017-11-14 21:57:53,662 DemoClass - This is an information log message. [WARN ] 2017-11-14 21:57:53,662 DemoClass - This is a warning log message.
The following table briefly summarizes the conversion characters defined by the Log4j
framework:
What to print | Conversion character | Performance |
Category Name (or Logger Name) | c | Fast |
Fully Qualified Class Name | C | Slow |
Date and Time | d d{format} | Slow if using JDK’s Formatters. Fast if using Log4j Formatters. |
Filename of Java class | F | Extremely slow |
Location (Class, Method, and line number) | l | Extremely slow |
Line Number only | L | Extremely slow |
Log Message | m | Fast |
Method Name | M | Extremely slow |
Priority (level) | p | Fast |
New Line Separator | n | Fast |
Thread Name | t | Fast |
Time Elapsed (in milliseconds) | r | Fast |
Thread’s Nested Diagnostic Context | x | Fast |
Thread’s Mapped Diagnostic Context | X | Fast |
Percent Sign | %% | Fast |
1.3 Why prefer Log4j over System.out.println?
Below are some of the reasons, which are enough to understand the limitation of using System.out.println()
,
- Any logging framework including allows developers to log debugging information to a log level which can be used as filtering criteria, i.e. one can disable the message belongs to a particular log level. For e.g., Developers would be more concerned to see the
WARN
messages than theDEBUG
messages in the production environment - Logging framework can produce better outputs and metadata which helps to troubleshoot and debug. For e.g.,
Log4j
allows to print formatted output by specifying a formatting pattern i.e. by usingPatternLayout
one can include a timestamp, class name etc
Now, open up the Eclipse Ide and let’s start building the application!
2. Log4j Conversion Pattern Example
Below are the steps involved in developing this application.
2.1 Tools Used
We are using Eclipse Kepler SR2, JDK 8, and Log4j
Jar. Having said that, we have tested the code against JDK 1.7 and it works well.
2.2 Project Structure
Firstly, let’s review the final project structure, in case you are confused about where you should create the corresponding files or folder later!
2.3 Project Creation
This section will demonstrate on how to create a Java-based Maven project with Eclipse. In Eclipse Ide, go to File -> New -> Maven Project
.
In the New Maven Project window, it will ask you to select a project location. By default, ‘Use default workspace location’ will be selected. Select the ‘Create a simple project (skip archetype selection)’ checkbox and just click on next button to proceed.
It will ask you to ‘Enter the group and the artifact id for the project‘. We will input the details as shown in the below image. The version number will be by default: 0.0.1-SNAPSHOT
.
Click on finish and the creation of a maven project will be completed. If you observe, it has downloaded the maven dependencies and a pom.xml
file will be created. It will have the following code:
pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>Log4jConversionPattern</groupId> <artifactId>Log4jConversionPattern</artifactId> <version>0.0.1-SNAPSHOT</version> </project>
We can start adding the dependencies that developers want like Log4j
, Junit etc. Let’s start building the application!
3. Application Building
Below are the steps involved in developing this application.
3.1 Maven Dependencies
In this example, we are using the most stable Log4j version in order to set-up the logging framework. The updated file will have the following code:
pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>Log4jConversionPattern</groupId> <artifactId>Log4jConversionPattern</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <dependencies> <!-- https://mvnrepository.com/artifact/log4j/log4j --> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> </dependencies> </project>
3.2 Java Class Creation
Let’s create the required Java files. Right-click on src/main/java
folder, New -> Package
.
A new pop window will open where we will enter the package name as: com.jcg.log4j
.
Once the package is created, we will need to create the implementation class. Right-click on the newly created package, New -> Class
.
A new pop window will open and enter the file name as: Log4jPattern
. The implementation class will be created inside the package: com.jcg.log4j
.
3.2.1 Implementation of Utility Class
Let’s write a quick Java program containing a simple priority, category, method-name, and message pattern and write the log message to the console.
Log4j Simple Conversion Pattern
[%p] %c %M - %m%n
Where:
%n
should be used to add a new line character at the end of every message
Add the following code to it.
Log4jPattern.java
package com.jcg.log4j; import org.apache.log4j.Logger; public class Log4jPattern { static Logger logger = Logger.getLogger(Log4jPattern.class); public static void main(String[] args) { logger.info("This Is A Log Message ..!"); } }
3.3 Log4j Configuration File
Log4j
will be usually configured using a properties file or an XML
file. So once the log statements are in place developers can easily control them using the external configuration file without modifying the source code. The log4j.xml
file is a Log4j
configuration file which keeps properties in key-value pairs. By default, the LogManager
looks for a file named log4j.xml
in the CLASSPATH
.
To configure the logging framework, we need to implement a configuration file i.e. log4j.xml
and put it into the src/main/resources
folder. Add the following code to it:
log4j.xml
<?xml version="1.0" encoding="UTF-8"?> <log4j:configuration debug="true" xmlns:log4j="http://jakarta.apache.org/log4j/"> <appender name="console" class="org.apache.log4j.ConsoleAppender"> <layout class="org.apache.log4j.PatternLayout"> <param name="ConversionPattern" value="[%p] %d [%t] %x %c %M - %m%n" /> </layout> </appender> <root> <level value="INFO" /> <appender-ref ref="console" /> </root> </log4j:configuration>
4. Run the Application
To run the application, Right click on the Log4jPattern
class, Run As -> Java Application
. Developers can debug the example and see what happens after every step. Enjoy!
5. Project Demo
The code shows the following status as output.
- Simple Conversion Pattern:
[%p] %c %M - %m%n
Output[INFO] com.jcg.log4j.Log4jPattern main - This Is A Log Message ..!
- Standard Conversion Pattern:
[%p] %d %c %M - %m%n
Output[INFO] 2017-11-14 20:30:20,434 com.jcg.log4j.Log4jPattern main - This Is A Log Message ..!
- Conversion Patterns where Date and Time matters: Sometimes it is critical to measure time in the log output. By default, the
%d
conversion character outputs the date and time inISO8601
format. However, developers can use a date format specifier to format the date and time explicitly. For e.g.:- If developers need time granularity to milliseconds:
[%p] %d{MM-dd-yyyy HH:mm:ss,SSS} %c %M - %m%n
Output[INFO] 11-14-2017 20:36:01,331 com.jcg.log4j.Log4jPattern main - This Is A Log Message ..!
- ISO8601 Date Format specifier:
[%p] %d{ISO8601} %c %M - %m%n
Output[INFO] 2017-11-14 20:37:21,116 com.jcg.log4j.Log4jPattern main - This Is A Log Message ..!
- Using
DATE
format specifier:[%p] %d{DATE} %c %M - %m%n
Output[INFO] 14 Nov 2017 20:38:36,355 com.jcg.log4j.Log4jPattern main - This Is A Log Message ..!
- Using
ABSOLUTE
date format specifier:[%p] %d{ABSOLUTE} %c %M - %m%n
Output[INFO] 20:47:49,096 com.jcg.log4j.Log4jPattern main - This Is A Log Message ..!
- If developers need time granularity to milliseconds:
- Conversion Patterns where Thread Context matters: For debugging multi-threaded applications,
Log4j
provides the following conversion characters:%t
: Thread Name%x
: Thread’s Nested Diagnostic Context%X
: Thread’s Mapped Diagnostic Context
Pattern:
[%p] %d [%t] %x %c %M - %m%n
Output[INFO] 2017-11-14 21:24:29,147 [main] com.jcg.log4j.Log4jPattern main - This Is A Log Message ..!
That’s all for this post. Happy Learning!!
6. Conclusion
That’s all for getting the developers started with the Log4j
example. We will look into more features in the next posts. I hope this article served you whatever you were looking for. Developers can download the sample application as an Eclipse project in the Downloads section.
7. Download the Eclipse Project
This was an example of Log4j
Conversion Pattern Example.
You can download the full source code of this example here: Log4jConversionPattern