📄 log4j.properties
字号:
# An example log4j configuration file that outputs to System.out. The
# output information consists of relative time, log level, thread
# name, logger name, nested diagnostic context and the message in that
# order.
# For the general syntax of property based configuration files see the
# documenation of org.apache.log4j.PropertyConfigurator.
log4j.rootLogger=INFO, A1
# A1 is set to be a ConsoleAppender which outputs to System.out.
log4j.appender.A1=org.apache.log4j.ConsoleAppender
# A1 uses PatternLayout.
log4j.appender.A1.layout=org.apache.log4j.PatternLayout
# The conversion pattern uses format specifiers. You might want to
# change the pattern an watch the output format change.
log4j.appender.A1.layout.ConversionPattern=%-4r %-5p [%t] %37c %3x - %m%n
#log4j.appender.A1=org.apache.log4j.FileAppender
#log4j.appender.A1.File=D:/Tomcat 5.5/webapps/fish/WEB-INF/logs/log.log
# In this example, we are not really interested in INNER loop or SWAP
# messages. See the effects of uncommenting and changing the levels of
# the following loggers.
log4j.logger.org.apache=INFO, A1
log4j.logger.org.springframework=ERROR, A1
log4j.logger.com.binghe=DEBUG, A1
log4j.logger.org.hibernate=ERROR, A1
log4j.logger.net.sf=ERROR, A1
log4j.logger.com.mchange=ERROR, A1
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -