SLF4J – Parameterized logging

SLF4J – Parameterized logging ”; Previous Next As discussed earlier in this tutorial SLF4J provides support for parameterized log messages. You can use parameters in the messages and pass values to them later in the same statement. Syntax As shown below, you need to use placeholders ({}) in the message (String) wherever you need and later you can pass value for place holder in object form, separating the message and value with comma. Integer age; Logger.info(“At the age of {} ramu got his first job”, age); Example The following example demonstrates parameterized logging (with single parameter) using SLF4J. import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class PlaceHolders { public static void main(String[] args) { //Creating the Logger object Logger logger = LoggerFactory.getLogger(PlaceHolders.class); Integer age = 23; //Logging the information logger.info(“At the age of {} ramu got his first job”, age); } } Output Upon execution, the above program generates the following output − Dec 10, 2018 3:25:45 PM PlaceHolders main INFO: At the age of 23 Ramu got his first job Advantage of Parameterized Logging In Java, if we need to print values in a statement, we will use concatenation operator as − System.out.println(“At the age of “+23+” ramu got his first job”); This involves the conversion of the integer value 23 to string and concatenation of this value to the strings surrounding it. And if it is a logging statement, and if that particular log level of your statement is disabled then, all this calculation will be of no use. In such circumstances, you can use parameterized logging. In this format, initially SLF4J confirms whether the logging for particular level is enabled. If so then, it replaces the placeholders in the messages with the respective values. For example, if we have a statement as Integer age; Logger.debug(“At the age of {} ramu got his first job”, age); Only if debugging is enabled then, SLF4J converts the age into integer and concatenates it with the strings otherwise, it does nothing. Thus incurring the cost of parameter constructions when logging level is disabled. Two Argument Variant You can also use two parameters in a message as − logger.info(“Old weight is {}. new weight is {}.”, oldWeight, newWeight); Example The following example demonstrates the usage of two placeholders in parametrized logging. import java.util.Scanner; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class PlaceHolders { public static void main(String[] args) { Integer oldWeight; Integer newWeight; Scanner sc = new Scanner(System.in); System.out.println(“Enter old weight:”); oldWeight = sc.nextInt(); System.out.println(“Enter new weight:”); newWeight = sc.nextInt(); //Creating the Logger object Logger logger = LoggerFactory.getLogger(Sample.class); //Logging the information logger.info(“Old weight is {}. new weight is {}.”, oldWeight, newWeight); //Logging the information logger.info(“After the program weight reduced is: “+(oldWeight-newWeight)); } } Output Upon execution, the above program generates the following output. Enter old weight: 85 Enter new weight: 74 Dec 10, 2018 4:12:31 PM PlaceHolders main INFO: Old weight is 85. new weight is 74. Dec 10, 2018 4:12:31 PM PlaceHolders main INFO: After the program weight reduced is: 11 Multiple Argument Variant You can also use more than two placeholders as shown in the following example − import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class PlaceHolders { public static void main(String[] args) { Integer age = 24; String designation = “Software Engineer”; String company = “Infosys”; //Creating the Logger object Logger logger = LoggerFactory.getLogger(Sample.class); //Logging the information logger.info(“At the age of {} ramu got his first job as a {} at {}”, age, designation, company); } } Output Upon execution, the above program generates the following output − Dec 10, 2018 4:23:52 PM PlaceHolders main INFO: At the age of 24 ramu got his first job as a Software Engineer at Infosys Print Page Previous Next Advertisements ”;

SLF4J – Environment Setup

SLF4J – Environment Setup ”; Previous Next In this chapter, we will explain how to set SLF4J environment in Eclipse IDE. Before proceeding with the installation, make sure that you already have Eclipse installed in your system. If not, download and install Eclipse. For more information on Eclipse, please refer our Eclipse Tutorial Step 1: Download the dependency JAR file Open the official homepage of the SLF4J website and go to the download page. Now, download the latest stable version of slf4j-X.X.tar.gz or slf4j-X.X.zip, according to your operating system (if windows .zip file or if Linux tar.gz file). Within the downloaded folder, you will find slf4j-api-X.X.jar. This is the required Jar file. Step 2: Create a project and set build path Open eclipse and create a sample project. Right-click on the project, select the option Build Path → Configure Build Path… as shown below. In the Java Build Path frame in the Libraries tab, click Add External JARs… Select the slf4j-api.x.x.jar file downloaded and click Apply and Close. SLF4J Bindings In addition to slf4j-api.x.x.jar file, SLF4J provides several other Jar files as shown below. These are called SLF4J bindings. Where each binding is for its respective logging framework. The following table lists the SLF4J bindings and their corresponding frameworks. Sr.No Jar file & Logging Framework 1 slf4j-nop-x.x.jar No operation, discards all loggings. 2 slf4j-simple-x.x.jar Simple implementation where messages for info and higher are printed and, remaining all outputs to System.err. 3 slf4j-jcl-x.x.jar Jakarta Commons Logging framework. 4 slf4j-jdk14-x.x.jar Java.util.logging framework (JUL). 5 slf4j-log4j12-x.x.jar Log4J frame work. In addition, you need to have log4j.jar. To make SLF4J work along with slf4l-api-x.x.jar, you need to add the respective Jar file (binding) of the desired logger framework in the classpath of the project (set build path). To switch from one framework to other, you need to replace the respective binding. If no bounding is found, it defaults to no-operation mode. Pom.xml for SLF4J If you are creating the maven project, open the pom.xml and paste the following content in it and refresh the project. <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>Sample</groupId> <artifactId>Sample</artifactId> <version>0.0.1-SNAPSHOT</version> <build> <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.25</version> </dependency> </dependencies> </project> Print Page Previous Next Advertisements ”;