How do I configure log4j 2.3
with console appender
pure programmatically (no configuration files of any format)?
Basically I'm looking for 2.x version of this 1.x code.
In my classes I would then use
private static final Logger logger = LogManager.getLogger();
//
// some method
logger.debug(someString);
Without any configuration I'm (as expected) facing
ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console.
While usage of configuration files seems to be properly documented, I couldn't find a good example of a bare-bone code-only case.
The closest I got is this article that still uses a dummy file.
Here's my best (though completely unsuccessful) shot:
private static void configureLog4J() {
PatternLayout layout = PatternLayout.createDefaultLayout();
ConsoleAppender appender = ConsoleAppender.createDefaultAppenderForLayout(layout);
LoggerConfig loggerConfig = new LoggerConfig();
loggerConfig.addAppender(appender, DEBUG, null);
}
Have I missed something?
If it's still a RTFM case, please point me into the right direction.
You Can customize your own ConfigurationFactory in log4j. Pls refer to https://logging.apache.org/log4j/2.x/manual/customconfig.html. It seems it can meet your need.
Sorry for that. Does this way meet your need? I just test, and it runs well even though it still outputs the error message you mentioned above.