remove errant logging

This commit is contained in:
Neil Johnson 2018-07-30 22:42:12 +01:00
parent fef7e58ac6
commit 21276ff846
1 changed files with 0 additions and 1 deletions

View File

@ -522,7 +522,6 @@ def run(hs):
count = 0 count = 0
if hs.config.limit_usage_by_mau: if hs.config.limit_usage_by_mau:
count = hs.get_datastore().count_monthly_users() count = hs.get_datastore().count_monthly_users()
logger.info("NJ count is %d" % (count,))
current_mau_gauge.set(float(count)) current_mau_gauge.set(float(count))
max_mau_value_gauge.set(float(hs.config.max_mau_value)) max_mau_value_gauge.set(float(hs.config.max_mau_value))
limit_usage_by_mau_gauge.set(float(hs.config.limit_usage_by_mau)) limit_usage_by_mau_gauge.set(float(hs.config.limit_usage_by_mau))