Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
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 (309)
Collections:
Other Resources:
SimpleLog Logger and simplelog.properties File
How to use SimpleLog Logger and simplelog.properties File?
✍: FYIcenter.com
The suggested way to use the SimpleLog Logger and simplelog.properties File
is to do the following:
1.Create commons-logging.properties file with one entry:
# commons-logging.properties org.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog
2.Create simplelog.properties file:
# simplelog.properties # Copyright (c) 2016 FYIcenter.com # Show timestampe in the log org.apache.commons.logging.simplelog.showdatetime=true # Use the format for timestamp org.apache.commons.logging.simplelog.dateTimeFormat=yyyy-MM-dd'T'HH:mm:ss.SSSZ # Show logger instance name org.apache.commons.logging.simplelog.showShortLogname=true # Set level to "trace" on "MyLogging" instance org.apache.commons.logging.simplelog.log.MyLogging=trace # Set level to "warn" on all other log instances org.apache.commons.logging.simplelog.defaultlog=warn
3. Run the HelloCommonsLogging example code with both properties files in the current folder, which is included in the class path:
C:\fyicenter>java -cp .;C:\local\commons-logging-1.2\commons-logging-1.2.jar HelloCommonsLogging Log class: org.apache.commons.logging.impl.SimpleLog 2016-11-13T22:57:01.895-0500 [FATAL] MyLogging - Hello - fatal 2016-11-13T22:57:01.895-0500 [ERROR] MyLogging - Hello - error 2016-11-13T22:57:01.895-0500 [WARN] MyLogging - Hello - warn 2016-11-13T22:57:01.895-0500 [INFO] MyLogging - Hello - info 2016-11-13T22:57:01.895-0500 [DEBUG] MyLogging - Hello - debug 2016-11-13T22:57:01.895-0500 [TRACE] MyLogging - Hello - trace
⇒ Jdk14Logger Logger and logging.properties File
⇐ What Is commons-logging.properties File?
2016-11-16, 3689👍, 0💬
Popular Posts:
XMLSchema, Release 1.4.2, is a lightweight Java object model that can be used to manipulate and gene...
What Is jtds-1.2.2.jar? jtds-1.2.2.jar is the JAR files of jTDS Java library 1.2.2, which is a JDBC ...
JLayer is a library that decodes/plays/converts MPEG 1/2/2.5 Layer 1/2/3 (i.e. MP3) in real time for...
What Is poi-contrib-3.5.jar? poi-contrib-3.5.jar is one of the JAR files for Apache POI 3.5, which p...
ASM is an all purpose Java bytecode manipulation and analysis framework. It can be used to modify ex...