Skip to content
Snippets Groups Projects
Commit 266df8a9 authored by David Baker's avatar David Baker
Browse files

Merge pull request #428 from matrix-org/pusher_api_log

Add logging to pushers API to log the body of the request
parents a190b2e8 9c9b2829
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,9 @@ from synapse.push import PusherConfigException
from .base import ClientV1RestServlet, client_path_patterns
import simplejson as json
import logging
logger = logging.getLogger(__name__)
class PusherRestServlet(ClientV1RestServlet):
......@@ -51,6 +54,9 @@ class PusherRestServlet(ClientV1RestServlet):
raise SynapseError(400, "Missing parameters: "+','.join(missing),
errcode=Codes.MISSING_PARAM)
logger.debug("set pushkey %s to kind %s", content['pushkey'], content['kind'])
logger.debug("Got pushers request with body: %r", content)
append = False
if 'append' in content:
append = content['append']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment