add third axis source code
This commit is contained in:
parent
396f90a6c6
commit
a34954d3c4
|
@ -0,0 +1,8 @@
|
|||
# Uncomment the next line to disable all logging.
|
||||
#org.apache.commons.logging.Log=org.apache.commons.logging.impl.NoOpLog
|
||||
|
||||
# Uncomment the next line to enable the simple log based logging
|
||||
#org.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog
|
||||
|
||||
# Uncomment the next line to enable log4j based logging
|
||||
#org.apache.commons.logging.Log=org.apache.commons.logging.impl.Log4JLogger
|
|
@ -0,0 +1,20 @@
|
|||
# Set root category priority to INFO and its only appender to CONSOLE.
|
||||
log4j.rootCategory=INFO, CONSOLE
|
||||
#log4j.rootCategory=INFO, CONSOLE, LOGFILE
|
||||
|
||||
# Set the enterprise logger category to FATAL and its only appender to CONSOLE.
|
||||
log4j.logger.org.apache.axis.enterprise=FATAL, CONSOLE
|
||||
|
||||
# CONSOLE is set to be a ConsoleAppender using a PatternLayout.
|
||||
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
|
||||
log4j.appender.CONSOLE.Threshold=INFO
|
||||
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
|
||||
log4j.appender.CONSOLE.layout.ConversionPattern=- %m%n
|
||||
|
||||
# LOGFILE is set to be a File appender using a PatternLayout.
|
||||
log4j.appender.LOGFILE=org.apache.log4j.FileAppender
|
||||
log4j.appender.LOGFILE.File=axis.log
|
||||
log4j.appender.LOGFILE.Append=true
|
||||
log4j.appender.LOGFILE.Threshold=INFO
|
||||
log4j.appender.LOGFILE.layout=org.apache.log4j.PatternLayout
|
||||
log4j.appender.LOGFILE.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n
|
|
@ -0,0 +1,4 @@
|
|||
# Logging detail level,
|
||||
# Must be one of ("trace", "debug", "info", "warn", "error", or "fatal").
|
||||
org.apache.commons.logging.simplelog.defaultlog=info
|
||||
|
Loading…
Reference in New Issue