0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-15 17:18:19 +02:00

log *after* reloading log config

... because logging *before* reloading means the log message gets lost in the old MemoryLogger
This commit is contained in:
Richard van der Hoff 2018-08-10 14:56:48 +01:00
parent b37c472419
commit c08f9d95b2

View file

@ -193,9 +193,8 @@ def setup_logging(config, use_worker_options=False):
def sighup(signum, stack):
# it might be better to use a file watcher or something for this.
logging.info("Reloading log config from %s due to SIGHUP",
log_config)
load_log_config()
logging.info("Reloaded log config from %s due to SIGHUP", log_config)
load_log_config()