25 lines
746 B
Properties
25 lines
746 B
Properties
|
|
||
|
####################################################################
|
||
|
#
|
||
|
# L O G 4 j A P P E N D E R s
|
||
|
#
|
||
|
###################################################################
|
||
|
|
||
|
###################
|
||
|
# Write Output to Console (aka TTY)
|
||
|
#
|
||
|
log4j.appender.console=org.apache.log4j.ConsoleAppender
|
||
|
log4j.appender.console.layout=org.apache.log4j.PatternLayout
|
||
|
log4j.appender.console.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n
|
||
|
|
||
|
####################################################################
|
||
|
#
|
||
|
# R O O T D E B U G G I N G L E V E L
|
||
|
#
|
||
|
###################################################################
|
||
|
|
||
|
######################
|
||
|
# Set root logger level to an (Appender)
|
||
|
#
|
||
|
log4j.rootLogger=FATAL, console
|