Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
Hello Program with Apache Log4j 1.x
How to write a simple Hello program with Apache Log4j 1.x? I need it to test out which JARs are needed to compile and run my Java applications using Log4j 1.x.
✍: FYIcenter.com
Below is a simple Hello program that calls the Apache Log4j 1.x API:
// Copyright (c) FYIcenter.com
import org.apache.log4j.*;
public class HelloLog4j {
private static final Logger logger = Logger.getLogger("fyiLogger");
public static void main(String[] args) {
System.out.println("Logger class: "+logger.getClass().getName());
BasicConfigurator.configure();
logger.fatal("Hello - fatal");
logger.error("Hello - error");
logger.warn("Hello - warn");
logger.info("Hello - info");
logger.debug("Hello - debug");
logger.trace("Hello - trace");
}
}
This sample program, HelloLog4j.java, does the following:
⇒ Compile and Run Program with Apache Log4j 1.x
⇐ Prerequisites for Apache Log4j 1.x
2015-12-11, ∼2328🔥, 0💬
Popular Posts:
How to download and install JDK (Java Development Kit) 8? If you want to write Java applications, yo...
maven-compat-3.5.4.jar is the JAR file for Apache Maven 3.5.4 Compact module. The JAR file name may ...
JDK 11 jdk.aot.jmod is the JMOD file for JDK 11 Ahead-of-Time (AOT) Compiler module. JDK 11 AOT Comp...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...
How to download and install iText7-Core-7.1.4.zip? iText7-Core-7.1.4.zip is the binary package of iT...