Enable quiet log in default configuration
Signed-off-by: Pierre Fersing <pierre.fersing@bleemeo.com>
This commit is contained in:
parent
1c7715780e
commit
a67a8ad8d0
|
@ -5,6 +5,7 @@
|
|||
### Features
|
||||
|
||||
- [#1564](https://github.com/influxdata/telegraf/issues/1564): Use RFC3339 timestamps in log output.
|
||||
- [#2026](https://github.com/influxdata/telegraf/pull/2026): Log quietly by default.
|
||||
|
||||
### Bugfixes
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
## Run telegraf with debug log messages.
|
||||
debug = false
|
||||
## Run telegraf in quiet mode (error log messages only).
|
||||
quiet = false
|
||||
quiet = true
|
||||
## Specify the log file name. The empty string means to log to stderr.
|
||||
logfile = ""
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
## Run telegraf in debug mode
|
||||
debug = false
|
||||
## Run telegraf in quiet mode
|
||||
quiet = false
|
||||
quiet = true
|
||||
## Specify the log file name. The empty string means to log to stdout.
|
||||
logfile = "/Program Files/Telegraf/telegraf.log"
|
||||
|
||||
|
|
|
@ -240,7 +240,7 @@ var header = `# Telegraf Configuration
|
|||
## Run telegraf with debug log messages.
|
||||
debug = false
|
||||
## Run telegraf in quiet mode (error log messages only).
|
||||
quiet = false
|
||||
quiet = true
|
||||
## Specify the log file name. The empty string means to log to stderr.
|
||||
logfile = ""
|
||||
|
||||
|
|
Loading…
Reference in New Issue