diff options
author | Erik Johnston <erik@matrix.org> | 2016-04-14 11:54:14 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-04-14 11:54:14 +0100 |
commit | e40f25ebe1715324f52fb30741e0b58e3038f4cc (patch) | |
tree | 1ea930997924a3865a93348b34b235f8904382b6 /synapse/push/httppusher.py | |
parent | Merge pull request #724 from matrix-org/erikj/push_measure (diff) | |
download | synapse-e40f25ebe1715324f52fb30741e0b58e3038f4cc.tar.xz |
Rename log context
Diffstat (limited to 'synapse/push/httppusher.py')
-rw-r--r-- | synapse/push/httppusher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py index b939d889fb..6268ea7b00 100644 --- a/synapse/push/httppusher.py +++ b/synapse/push/httppusher.py @@ -95,7 +95,7 @@ class HttpPusher(object): # We could check the receipts are actually m.read receipts here, # but currently that's the only type of receipt anyway... - with LoggingContext("push._process"): + with LoggingContext("push.on_new_receipts"): with Measure(self.clock, "push.on_new_receipts"): badge = yield push_tools.get_badge_count( self.hs.get_datastore(), self.user_id |