diff options
author | Erik Johnston <erik@matrix.org> | 2024-06-19 10:50:01 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2024-06-19 10:50:01 +0100 |
commit | 9e46ea43f4e4d41857fc074313139916a8c02897 (patch) | |
tree | d3bb97a5b9245868c05ba3aafe5f2219dfa67c14 | |
parent | More logging (diff) | |
download | synapse-9e46ea43f4e4d41857fc074313139916a8c02897.tar.xz |
Make warning
-rw-r--r-- | synapse/app/_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/app/_base.py b/synapse/app/_base.py index ebf94d6428..395ec3efd7 100644 --- a/synapse/app/_base.py +++ b/synapse/app/_base.py @@ -626,13 +626,13 @@ async def start(hs: "HomeServer") -> None: gc.freeze() def exit() -> None: - logger.info("Doing FREEZE") + logger.warning("Doing FREEZE") start = time.time() gc.freeze() end = time.time() - logger.info("GC freeze took %d ms", (end - start) * 1000) + logger.warning("GC freeze took %d ms", (end - start) * 1000) # Speed up shutdowns by freezing all allocated objects. This moves everything # into the permanent generation and excludes them from the final GC. |