diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2016-01-06 14:04:27 +0000 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2016-01-06 14:04:27 +0000 |
commit | 797691f9085cb4ed5f4575592d25ba6b5376edcf (patch) | |
tree | 10631b33f4ba7ff5718c755eacf150eb2bcc4492 /synapse/app | |
parent | Merge pull request #466 from matrix-org/daniel/logloglog (diff) | |
download | synapse-797691f9085cb4ed5f4575592d25ba6b5376edcf.tar.xz |
Log on stats scheduling
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 0807def6ca..f0f92d66b6 100755 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -718,6 +718,7 @@ def run(hs): if hs.config.report_stats: phone_home_task = task.LoopingCall(phone_stats_home) + logger.info("Scheduling stats reporting for 24 hour intervals") phone_home_task.start(60 * 60 * 24, now=False) def in_thread(): |