blob: 663eb3a146eb32899c240b4567e2f2867d717de4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright (c) 2023 Egor Tensin <egor@tensin.name>
# This file is part of the "cimple" project.
# For details, see https://github.com/egor-tensin/cimple.
# Distributed under the MIT License.
from contextlib import contextmanager
import logging
import logging.config
import logging.handlers
import multiprocessing as mp
@contextmanager
def child_logging_thread():
# Delegating logging to the parent logger.
ctx = mp.get_context('spawn')
queue = ctx.Queue()
listener = logging.handlers.QueueListener(queue, logging.getLogger())
listener.start()
try:
yield queue
finally:
listener.stop()
@contextmanager
def configure_logging_in_child(queue):
config = {
'version': 1,
'handlers': {
'sink': {
'class': 'logging.handlers.QueueHandler',
'queue': queue,
},
},
'root': {
'handlers': ['sink'],
'level': 'DEBUG',
},
}
logging.config.dictConfig(config)
try:
yield
except Exception as e:
logging.exception(e)
|