Classes
RequestLogger
Mixin class providing beautiful, minimal logging for HTTP requests.
This class is designed to be m…
RequestLogger
Mixin class providing beautiful, minimal logging for HTTP requests.
This class is designed to be mixed into an HTTP request handler.
Methods 2
log_message
Log an HTTP request with beautiful formatting.
log_message
def log_message(self, format: str, *args: Any) -> None
Log an HTTP request with beautiful formatting.
Parameters 1
format |
str |
Format string *args: Format arguments |
log_error
Suppress error logging - we handle everything in log_message.
log_error
def log_error(self, format: str, *args: Any) -> None
Suppress error logging - we handle everything in log_message.
Parameters 1
format |
str |
Format string *args: Format arguments |