Disable logging to file and rely on the console when using Docker
This commit is contained in:
parent
07f1b71819
commit
f44b7c022f
|
@ -10,13 +10,6 @@ filters:
|
|||
request: ""
|
||||
|
||||
handlers:
|
||||
file:
|
||||
class: logging.handlers.RotatingFileHandler
|
||||
formatter: precise
|
||||
filename: /data/homeserver.log
|
||||
maxBytes: 104857600
|
||||
backupCount: 10
|
||||
filters: [context]
|
||||
console:
|
||||
class: logging.StreamHandler
|
||||
formatter: precise
|
||||
|
@ -33,4 +26,4 @@ loggers:
|
|||
|
||||
root:
|
||||
level: INFO
|
||||
handlers: [file, console]
|
||||
handlers: [console]
|
||||
|
|
Loading…
Reference in New Issue