Logs are submitted like so:
logger.debug(
"Handling RPC request - %s", {"request": message, "channel": self.id}
)
Loguru doesn't accept this format, maybe at one point it did, but right now my log outputs look like this:
DEBUG | fastapi_websocket_rpc.rpc_channel:on_response:382 - Handling RPC response - %s
The parameter is not interpolated.
You can add a wrapper to the get_logger interface that will return something that will work, or maybe just remove loguru from supported logging systems 🤷
Logs are submitted like so:
Loguru doesn't accept this format, maybe at one point it did, but right now my log outputs look like this:
The parameter is not interpolated.
You can add a wrapper to the
get_loggerinterface that will return something that will work, or maybe just remove loguru from supported logging systems 🤷