diff options
author | Neil Johnson <neil@fragile.org.uk> | 2018-07-30 22:42:12 +0100 |
---|---|---|
committer | Neil Johnson <neil@fragile.org.uk> | 2018-07-30 22:42:12 +0100 |
commit | 21276ff84601745093c2416bbf3db1f0ae56155d (patch) | |
tree | 9a4a5a5ed6186c614e24de93eaf1488f7be22c05 /synapse/app | |
parent | actually close conn (diff) | |
download | synapse-21276ff84601745093c2416bbf3db1f0ae56155d.tar.xz |
remove errant logging
Diffstat (limited to 'synapse/app')
-rwxr-xr-x | synapse/app/homeserver.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index a1512ccea4..96c45b7209 100755 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -522,7 +522,6 @@ def run(hs): count = 0 if hs.config.limit_usage_by_mau: count = hs.get_datastore().count_monthly_users() - logger.info("NJ count is %d" % (count,)) current_mau_gauge.set(float(count)) max_mau_value_gauge.set(float(hs.config.max_mau_value)) limit_usage_by_mau_gauge.set(float(hs.config.limit_usage_by_mau)) |