You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the example demonstrating usage of QueueHandler and QueueListener, the listener is instantiated with the following line in the example: logging.handlers.QueueListener(queue, handler_loki)
Looking at the source code, the thread handling the queue is not instantiated or started until start() is called (so __init__ is not enough).
The text was updated successfully, but these errors were encountered:
In the example demonstrating usage of
QueueHandler
andQueueListener
, the listener is instantiated with the following line in the example:logging.handlers.QueueListener(queue, handler_loki)
Looking at the source code, the thread handling the queue is not instantiated or started until
start()
is called (so__init__
is not enough).The text was updated successfully, but these errors were encountered: