We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0539d5 commit 1b80b9bCopy full SHA for 1b80b9b
telegram/utils/webhookhandler.py
@@ -85,6 +85,9 @@ def do_POST(self):
85
update = Update.de_json(json.loads(json_string))
86
self.logger.debug('Received Update with ID %d on Webhook' % update.update_id)
87
self.server.update_queue.put(update)
88
+
89
+ def log_message(self, format, *args):
90
+ return
91
92
def _validate_post(self):
93
if not (self.path == self.server.webhook_path and 'content-type' in self.headers and
0 commit comments