We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee24927 commit c65347fCopy full SHA for c65347f
bottle.py
@@ -3398,12 +3398,9 @@ def run(self, app): # pragma: no cover
3398
import socket
3399
3400
class FixedHandler(WSGIRequestHandler):
3401
- def address_string(self): # Prevent reverse DNS lookups please.
3402
- return self.client_address[0]
3403
-
3404
- def log_request(*args, **kw):
+ def log_message(other, format, *args):
3405
if not self.quiet:
3406
- return WSGIRequestHandler.log_request(*args, **kw)
+ return WSGIRequestHandler.log_message(other, format, *args)
3407
3408
handler_cls = self.options.get('handler_class', FixedHandler)
3409
server_cls = self.options.get('server_class', WSGIServer)
0 commit comments