diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-10-21 16:03:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-21 16:03:44 +0100 |
commit | d24346f53055eae7fb8e9038ef35fa843790742b (patch) | |
tree | 12bc50908f39225fb9b97c92cbaeb9ab03acbcb2 /synapse | |
parent | Show erasure status when listing users in the Admin API (#14205) (diff) | |
download | synapse-d24346f53055eae7fb8e9038ef35fa843790742b.tar.xz |
Fix logging error on SIGHUP (#14258)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/app/_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/_base.py b/synapse/app/_base.py index 000912e86e..a683ebf4cb 100644 --- a/synapse/app/_base.py +++ b/synapse/app/_base.py @@ -558,7 +558,7 @@ def reload_cache_config(config: HomeServerConfig) -> None: logger.warning(f) else: logger.debug( - "New cache config. Was:\n %s\nNow:\n", + "New cache config. Was:\n %s\nNow:\n %s", previous_cache_config.__dict__, config.caches.__dict__, ) |