21 lines
475 B
YAML
21 lines
475 B
YAML
rootLogger: INFO, console, file
|
|
logger:
|
|
jgroups: WARN
|
|
# log action execution errors for easier debugging
|
|
action : DEBUG
|
|
|
|
appender:
|
|
console:
|
|
type: console
|
|
layout:
|
|
type: consolePattern
|
|
conversionPattern: "[%d{ABSOLUTE}][%-5p][%-25c] %m%n"
|
|
|
|
file:
|
|
type: dailyRollingFile
|
|
file: ${path.logs}/${cluster.name}.log
|
|
datePattern: "'.'yyyy-MM-dd"
|
|
layout:
|
|
type: pattern
|
|
conversionPattern: "[%d{ABSOLUTE}][%-5p][%-25c] %m%n"
|
|
|