Enable emqx.log by default (#1979)
This commit is contained in:
parent
ce1c5e3d3a
commit
9c1bb30f81
|
@ -333,16 +333,16 @@ rpc.socket_keepalive_count = 9
|
||||||
##
|
##
|
||||||
## Value: off | file | console | both
|
## Value: off | file | console | both
|
||||||
## - off: disable logs entirely
|
## - off: disable logs entirely
|
||||||
## - file: write logs to file
|
## - file: write logs only to file
|
||||||
## - console: write logs to standard I/O
|
## - console: write logs only to standard I/O
|
||||||
## - both: write logs both to file and standard I/O
|
## - both: write logs both to file and standard I/O
|
||||||
log.to = console
|
log.to = both
|
||||||
|
|
||||||
## The log severity level.
|
## The log severity level.
|
||||||
##
|
##
|
||||||
## Value: debug | info | notice | warning | error | critical | alert | emergency
|
## Value: debug | info | notice | warning | error | critical | alert | emergency
|
||||||
##
|
##
|
||||||
## Note: Only the messages with severity level greater than or equal to
|
## Note: Only the messages with severity level higher than or equal to
|
||||||
## this level will be logged.
|
## this level will be logged.
|
||||||
##
|
##
|
||||||
## Default: error
|
## Default: error
|
||||||
|
@ -378,8 +378,8 @@ log.rotation.count = 5
|
||||||
## Format: log.$level.file = $filename,
|
## Format: log.$level.file = $filename,
|
||||||
## where "$level" can be one of: debug, info, notice, warning,
|
## where "$level" can be one of: debug, info, notice, warning,
|
||||||
## error, critical, alert, emergency
|
## error, critical, alert, emergency
|
||||||
## Note: Log files for a specific log level will contain all the logs
|
## Note: Log files for a specific log level will only contain all the logs
|
||||||
## that greater than or equal to that level
|
## that higher than or equal to that level
|
||||||
##
|
##
|
||||||
|
|
||||||
#log.info.file = info.log
|
#log.info.file = info.log
|
||||||
|
|
Loading…
Reference in New Issue