diff options
author | David Baker <dave@matrix.org> | 2016-01-06 17:28:55 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-01-06 17:28:55 +0000 |
commit | 442fcc02f70fd0ae0034fc15c79b9e521c3d0143 (patch) | |
tree | 9d20a280a761ac50f227ebb8e4b8c74d354bb8df /synapse/app/homeserver.py | |
parent | Adding is_guest here won't work because it just constructs a dict of uid -> p... (diff) | |
parent | Merge pull request #469 from matrix-org/markjh/joined_guest_access (diff) | |
download | synapse-442fcc02f70fd0ae0034fc15c79b9e521c3d0143.tar.xz |
Merge remote-tracking branch 'origin/develop' into store_event_actions
Diffstat (limited to 'synapse/app/homeserver.py')
-rwxr-xr-x | synapse/app/homeserver.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index 0807def6ca..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: @@ -718,6 +719,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(): |