We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8be841 commit 1c53d0fCopy full SHA for 1c53d0f
1 file changed
oauth2cli/authcode.py
@@ -77,6 +77,9 @@ def _send_full_response(self, body, is_ok=True):
77
self.end_headers()
78
self.wfile.write(body.encode("utf-8"))
79
80
+ def log_message(self, format, *args):
81
+ logger.debug(format, *args) # To override the default log-to-stderr behavior
82
+
83
84
class _AuthCodeHttpServer(HTTPServer):
85
def handle_timeout(self):
0 commit comments