.cava.2.0.5.source-code.log4j2.properties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cava Show documentation
Show all versions of cava Show documentation
A library that enables users to write minimal, clean and simple Java
# https://logging.apache.org/log4j/2.x/manual/configuration.html
# Print all log4j2 status-messages of INFO or higher
status = info
# Console appender, which uses specified pattern
appender.console.type = Console
appender.console.name = CavaConsoleAppender
appender.console.layout.type = PatternLayout
appender.console.layout.pattern = [%d{yyyy-MM-dd HH:mm z}{UTC}] %-5p %c{2} - %m%n
# By default, all logs will be routed to above CavaConsoleAppender, with min-threshold of INFO
rootLogger.level = info
rootLogger.appenderRef.stdout.ref = CavaConsoleAppender
# TODO Enhancement: Instructions for async logging
# https://logging.apache.org/log4j/2.x/manual/async.html