Lines Matching refs:QueueHandler
347 :class:`QueueHandler` to those loggers which are accessed from
358 designed as the counterpart to :class:`QueueHandler`. A
373 queue_handler = QueueHandler(que)
734 Alternatively, you can use a ``Queue`` and a :class:`QueueHandler` to send
807 h = logging.handlers.QueueHandler(queue) # Just the one handler needed
871 qh = logging.handlers.QueueHandler(q)
1293 Subclassing QueueHandler - a ZeroMQ example
1296 You can use a :class:`QueueHandler` subclass to send messages to other kinds
1307 class ZeroMQSocketHandler(QueueHandler):
1318 class ZeroMQSocketHandler(QueueHandler):
1468 see logging in the main process, how the workers log to a QueueHandler and how
1580 # The worker process configuration is just a QueueHandler attached to the
1590 'class': 'logging.handlers.QueueHandler',