diff options
author | Erik Johnston <erik@matrix.org> | 2016-01-18 15:44:04 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-01-18 15:44:04 +0000 |
commit | d16dcf642e56e2ad3e4e6fb5834844251f5383f4 (patch) | |
tree | c159dad664d62416dc4a1c211f2f63d4f3487449 /synapse | |
parent | Add comments and remove dead code (diff) | |
download | synapse-d16dcf642e56e2ad3e4e6fb5834844251f5383f4.tar.xz |
Drop log levels
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/push/push_rule_evaluator.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/push/push_rule_evaluator.py b/synapse/push/push_rule_evaluator.py index eab7fc7d5c..0816b632b4 100644 --- a/synapse/push/push_rule_evaluator.py +++ b/synapse/push/push_rule_evaluator.py @@ -161,7 +161,7 @@ class PushRuleEvaluator: ) if matches: - logger.info( + logger.debug( "%s matches for user %s, event %s", r['rule_id'], self.user_id, ev['event_id'] ) @@ -172,7 +172,7 @@ class PushRuleEvaluator: defer.returnValue(actions) - logger.info( + logger.debug( "No rules match for user %s, event %s", self.user_id, ev['event_id'] ) |