mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-21 22:56:38 +01:00
move webhook handler logs to logging at DEBUG level
This commit is contained in:
parent
27e57bbf58
commit
afc36a235b
1 changed files with 16 additions and 0 deletions
|
@ -102,3 +102,19 @@ class WebhookHandler(BaseHTTPServer.BaseHTTPRequestHandler, object):
|
|||
if clen < 0:
|
||||
raise _InvalidPost(403)
|
||||
return clen
|
||||
|
||||
def log_message(self, format, *args):
|
||||
"""Log an arbitrary message.
|
||||
|
||||
This is used by all other logging functions.
|
||||
|
||||
It overrides ``BaseHTTPRequestHandler.log_message``, which logs to ``sys.stderr``.
|
||||
|
||||
The first argument, FORMAT, is a format string for the message to be logged. If the format
|
||||
string contains any % escapes requiring parameters, they should be specified as subsequent
|
||||
arguments (it's just like printf!).
|
||||
|
||||
The client ip and current date/time are prefixed to every message.
|
||||
"""
|
||||
|
||||
self.logger.debug("%s - - %s" % (self.address_string(), format % args))
|
||||
|
|
Loading…
Reference in a new issue