summary refs log tree commit diff
path: root/synapse/config/logger.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2019-03-25 16:48:56 +0000
committerRichard van der Hoff <richard@matrix.org>2019-03-25 16:48:56 +0000
commitce0ce1add3dde3da2ff366ee873174f5b5e70763 (patch)
tree8573d760dbaa68676e95e18698639537e75d75b2 /synapse/config/logger.py
parentMerge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes (diff)
parentFix ClientReplicationStreamProtocol.__str__ (#4929) (diff)
downloadsynapse-ce0ce1add3dde3da2ff366ee873174f5b5e70763.tar.xz
Merge branch 'develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/config/logger.py')
-rw-r--r--synapse/config/logger.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/logger.py b/synapse/config/logger.py

index 464c28c2d9..c1febbe9d3 100644 --- a/synapse/config/logger.py +++ b/synapse/config/logger.py
@@ -195,7 +195,7 @@ def setup_logging(config, use_worker_options=False): else: def load_log_config(): with open(log_config, 'r') as f: - logging.config.dictConfig(yaml.load(f)) + logging.config.dictConfig(yaml.safe_load(f)) def sighup(*args): # it might be better to use a file watcher or something for this.