OpenSearch/config/logging.yml

29 lines
663 B
YAML
Raw Normal View History

2010-02-08 08:30:06 -05:00
rootLogger: INFO, console, file
logger:
# log action execution errors for easier debugging
action: DEBUG
# reduce the logging for aws, too much is logged under the default INFO
com.amazonaws: WARN
# gateway
#gateway: DEBUG
#index.gateway: DEBUG
# peer shard recovery
#index.shard.recovery: DEBUG
2010-02-08 08:30:06 -05:00
appender:
console:
type: console
layout:
type: consolePattern
2010-09-15 17:04:47 -04:00
conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
2010-02-08 08:30:06 -05:00
file:
type: dailyRollingFile
file: ${path.logs}/${cluster.name}.log
datePattern: "'.'yyyy-MM-dd"
layout:
type: pattern
2010-09-15 17:04:47 -04:00
conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
2010-02-08 08:30:06 -05:00