class documentation
class ACMERequestHandler(WSGIRequestHandler):
ACMERequestHandler is a custom request handler for the ACME CSE HTTP server. It extends the WSGIRequestHandler to provide custom logging.
| Method | log |
Log a message with the given type and arguments. This is used to log HTTP requests and responses. |
| Method | log |
Log a message with the given format and arguments. This is used to log HTTP requests and responses. |
| Method | log |
Log an HTTP request with the given code and size. This is used to log HTTP requests and responses. |
Log a message with the given type and arguments. This is used to log HTTP requests and responses.
| Parameters | |
type:str | The type of the log message (e.g. "request", "response"). |
message:str | The log message format string. |
*args:Any | The values to interpolate into the message format string. |
Log a message with the given format and arguments. This is used to log HTTP requests and responses.
| Parameters | |
format:str | The log message format string. |
*args:Any | The values to interpolate into the message format string. |