I am receiving the
following error:
log4j:ERROR Filename option not set for appender [stdout].
My config file (for
stdout) is:
log4j.rootCategory=DEBUG, stdout, bbLog# stdout is set to be a FileAppender sending its output to System.out
log4j.appender.stdout=org.apache.log4j.FileAppender
log4j.appender.stdout.File=System.out# stdout uses PatternLayout.
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout# The conversion pattern consists of date in ISO8601 format, priority,
# thread name, category name truncated to its rightmost two components
# and left justified to 17 characters, location information consisting
# of file name (padded to 13 characters) and line number, nested
# diagnostic context and the application supplied message#log4j.appender.stdout.layout.ConversionPattern=%d %-5p [%t] %-17c{2} (%13F:%L) %3x - %m%n
log4j.appender.stdout.layout.ConversionPattern=%d [%t] %-17c{2} - %m%n
I stay up on the
latest code in CVS and this recently started throwing that ERROR. What is
it telling me?