source: Dev/branches/rest-dojo-ui/elasticsearch/config/logging.yml @ 380

Last change on this file since 380 was 365, checked in by jkraaijeveld, 13 years ago
File size: 1.0 KB
Line 
1rootLogger: INFO, console, file
2logger:
3  # log action execution errors for easier debugging
4  action: DEBUG
5  # reduce the logging for aws, too much is logged under the default INFO
6  com.amazonaws: WARN
7
8  # gateway
9  #gateway: DEBUG
10  #index.gateway: DEBUG
11
12  # peer shard recovery
13  #indices.recovery: DEBUG
14
15  # discovery
16  #discovery: TRACE
17
18  index.search.slowlog: TRACE, index_search_slow_log_file
19
20additivity:
21  index.search.slowlog: false
22
23appender:
24  console:
25    type: console
26    layout:
27      type: consolePattern
28      conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
29
30  file:
31    type: dailyRollingFile
32    file: ${path.logs}/${cluster.name}.log
33    datePattern: "'.'yyyy-MM-dd"
34    layout:
35      type: pattern
36      conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
37
38  index_search_slow_log_file:
39    type: dailyRollingFile
40    file: ${path.logs}/${cluster.name}_index_search_slowlog.log
41    datePattern: "'.'yyyy-MM-dd"
42    layout:
43      type: pattern
44      conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
Note: See TracBrowser for help on using the repository browser.