I have an application that uses log4cxx
internally, with dozens of loggers. What is a minimal logger.properties
that I can setup to turn off all logging output?
In particular I'm getting a warning like (no properties file present):
log4cxx: No appender could be found for logger (FileSource).
log4cxx: Please initialize the log4cxx system properly.
FileSource
is a class that uses log4cxx
.
My goal is to preclude all log4cxx
output at runtime.