From 30868f5b0beacc0c4ab785abf0cb3a4408f90f55 Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Fri, 15 Mar 2024 17:59:23 -0500 Subject: [PATCH] Update litestar/logging/standard.py --- litestar/logging/standard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litestar/logging/standard.py b/litestar/logging/standard.py index 33e5d86f7b..6030261d5e 100644 --- a/litestar/logging/standard.py +++ b/litestar/logging/standard.py @@ -41,7 +41,7 @@ def __init__(self, queue: Queue[LogRecord], *handlers: Handler, respect_handler_ Args: queue: The queue to send messages to *handlers: A list of handlers which will handle entries placed on the queue - respect_handler_level: If respect_handler_level is True, a handler's level is respected (compared with the level for the message) when deciding whether to pass messages to that handler + respect_handler_level: If ``respect_handler_level`` is ``True``, a handler's level is respected (compared with the level for the message) when deciding whether to pass messages to that handler """ super().__init__(queue, *handlers, respect_handler_level=respect_handler_level) self.start()