diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2016-01-06 14:13:34 +0000 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2016-01-06 14:13:34 +0000 |
commit | bf32922e5a4903b16792a3aa7186e46555c7d1a0 (patch) | |
tree | bb5e4eab5f494b54f8010d19021838d9c9fec042 /synapse/app | |
parent | Log on stats scheduling (diff) | |
download | synapse-bf32922e5a4903b16792a3aa7186e46555c7d1a0.tar.xz |
Log when starting stats reporting
Diffstat (limited to 'synapse/app')
-rwxr-xr-x | synapse/app/homeserver.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index f0f92d66b6..49173e95b0 100755 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -688,6 +688,7 @@ def run(hs): @defer.inlineCallbacks def phone_stats_home(): + logger.info("Gathering stats for reporting") now = int(hs.get_clock().time()) uptime = int(now - start_time) if uptime < 0: |