Skip to content

Commit

Permalink
Correct the default log level in configs (#2199)
Browse files Browse the repository at this point in the history
Part of #1931. The default log level was changed to INFO in PR #1952,
but the change wasn't reflected in the default configuration files. This
fixes it. The issue was signaled in #2183.

Also fixes the logging level in the docs.
  • Loading branch information
tsg authored and ruflin committed Aug 9, 2016
1 parent c5ffc01 commit 8668973
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion filebeat/filebeat.full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ output.elasticsearch:
# Under Windows systems, the log files are per default sent to the file output,
# under all other system per default to syslog.

# Sets log level. The default log level is error.
# Sets log level. The default log level is info.
# Available log levels are: critical, error, warning, info, debug
#logging.level: error

Expand Down
2 changes: 1 addition & 1 deletion filebeat/filebeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ output.elasticsearch:

#================================ Logging =====================================

# Sets log level. The default log level is error.
# Sets log level. The default log level is info.
# Available log levels are: critical, error, warning, info, debug
#logging.level: debug

Expand Down
2 changes: 1 addition & 1 deletion libbeat/_meta/config.full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ output.elasticsearch:
# Under Windows systems, the log files are per default sent to the file output,
# under all other system per default to syslog.

# Sets log level. The default log level is error.
# Sets log level. The default log level is info.
# Available log levels are: critical, error, warning, info, debug
#logging.level: error

Expand Down
2 changes: 1 addition & 1 deletion libbeat/_meta/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ output.elasticsearch:

#================================ Logging =====================================

# Sets log level. The default log level is error.
# Sets log level. The default log level is info.
# Available log levels are: critical, error, warning, info, debug
#logging.level: debug

Expand Down
2 changes: 1 addition & 1 deletion libbeat/docs/loggingconfig.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ default value is true.

Minimum log level. One of debug, info, warning, error or critical. If debug is
used, but no selectors are configured, the `*` selector will be used.
The default log level is error.
The default log level is "info".

===== selectors

Expand Down
2 changes: 1 addition & 1 deletion metricbeat/metricbeat.full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ output.elasticsearch:
# Under Windows systems, the log files are per default sent to the file output,
# under all other system per default to syslog.

# Sets log level. The default log level is error.
# Sets log level. The default log level is info.
# Available log levels are: critical, error, warning, info, debug
#logging.level: error

Expand Down
2 changes: 1 addition & 1 deletion metricbeat/metricbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ output.elasticsearch:

#================================ Logging =====================================

# Sets log level. The default log level is error.
# Sets log level. The default log level is info.
# Available log levels are: critical, error, warning, info, debug
#logging.level: debug

Expand Down
2 changes: 1 addition & 1 deletion packetbeat/packetbeat.full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,7 @@ output.elasticsearch:
# Under Windows systems, the log files are per default sent to the file output,
# under all other system per default to syslog.

# Sets log level. The default log level is error.
# Sets log level. The default log level is info.
# Available log levels are: critical, error, warning, info, debug
#logging.level: error

Expand Down
2 changes: 1 addition & 1 deletion packetbeat/packetbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ output.elasticsearch:

#================================ Logging =====================================

# Sets log level. The default log level is error.
# Sets log level. The default log level is info.
# Available log levels are: critical, error, warning, info, debug
#logging.level: debug

Expand Down
2 changes: 1 addition & 1 deletion winlogbeat/winlogbeat.full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ output.elasticsearch:
# Under Windows systems, the log files are per default sent to the file output,
# under all other system per default to syslog.

# Sets log level. The default log level is error.
# Sets log level. The default log level is info.
# Available log levels are: critical, error, warning, info, debug
#logging.level: error

Expand Down
2 changes: 1 addition & 1 deletion winlogbeat/winlogbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ output.elasticsearch:

#================================ Logging =====================================

# Sets log level. The default log level is error.
# Sets log level. The default log level is info.
# Available log levels are: critical, error, warning, info, debug
#logging.level: debug

Expand Down

0 comments on commit 8668973

Please sign in to comment.