diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-03-30 14:03:50 +0100 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-03-30 14:05:23 +0100 |
commit | 5bd0d19b955daeaf727ecc48877d86662dbdc3e9 (patch) | |
tree | 8033f79b52c072dd4c4df6d3e8377e2df2545cf8 /synapse | |
parent | matrix.org was fine (diff) | |
download | synapse-github/anoa/debug_push.tar.xz |
Add push debug logging github/anoa/debug_push anoa/debug_push
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/push/httppusher.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py index 5bb17d1228..cc266a8207 100644 --- a/synapse/push/httppusher.py +++ b/synapse/push/httppusher.py @@ -375,6 +375,7 @@ class HttpPusher(object): if not notification_dict: return [] try: + logger.info("SENDING PUSH EVENT to %s: %s", self.url, notification_dict) resp = yield self.http_client.post_json_get_json( self.url, notification_dict ) |