multiprocessing-logging icon indicating copy to clipboard operation
multiprocessing-logging copied to clipboard

Handler for logging from multiple processes

Results 19 multiprocessing-logging issues
Sort by recently updated
recently updated
newest added
trafficstars

I've got a use case where I have I'd like to inject a custom queue type that behaves closely to multiprocessing.Queue. This allows the user to supply a factory function...

Thanks for the library! As of Python 3.8, the default start method for multiprocessing processes on macOS is `spawn`; see [here](https://docs.python.org/3/library/multiprocessing.html#contexts-and-start-methods). Unfortunately, as noted in #40 and #28, the current...

I got a simple program which yields 2 processes and they start to log infos. Traceback: ``` Traceback (most recent call last): File "/Users/xiehaochen/opt/anaconda3/envs/py27test/lib/python2.7/site-packages/multiprocessing_logging.py", line 117, in emit File "/Users/xiehaochen/opt/anaconda3/envs/py27test/lib/python2.7/site-packages/multiprocessing_logging.py",...

Need to use `for handler in list(logger.handlers):` instead of current `for handler in logger.handlers:` When I get some time, I will fork project and make a pull request.

Hi @jruere Was wondering if you would consider creating a conda-forge package for multiprocessing-logging. Happy to collaborate on it if you'd like.

- Update README - To make sure users do not make basic errors when configuring the handler

multiprocessing-logging 0.3.4 Python 3.10.6 Hi. Got the issue when tests are passed but hung before finishing. ```Exception ignored in atexit callback: Traceback (most recent call last): File "/usr/lib/python3.10/multiprocessing/util.py", line 360,...

Hi @jruere, I notice the library stringifies the exception info into exc_text, then [clears the exc_info property.](https://github.com/jruere/multiprocessing-logging/blob/c75d088dcbdd3ec52d164e94707d6d534a449e52/multiprocessing_logging.py#LL106C1-L108C35) This causes issues because the handler I'm using (AzureLogHandler) requires the exc_info property...

I was wondering about this comment (from the README) - **_Only works on POSIX systems and only Linux is supported. It does not work on Windows._** I want to use...