gertjan
09/28/2022, 1:57 PMexport PREFECT_LOGGING_EXTRA_LOGGERS='my-loggers-name'
Now, when I run my codebase in multiprocessing these logs are not shown in the UI.
Anyone has some tips how I still stream the logs of my-loggers-name to the UI while using multiprocessing?
EDIT: the root Logger is also ignored..Rob Freedy
09/29/2022, 1:40 PMgertjan
09/29/2022, 1:50 PM--env var?
Also, I can see already sone differences using spawn vs fork in multiprocessing, but still no luck to see these in the UI.
(single process still works)Rob Freedy
09/29/2022, 2:04 PMgertjan
09/29/2022, 2:06 PMPREFECT_LOGGING_EXTRA_LOGGERS is actually being detected, and the UI also shows the logs from my applications’s logger (or even the root logger).
Riddle to solve, why are these logs outputted in my application’s multiprocessing code not visible?
UPDATE: When I run my application multiprocessing on spawn I don’t see my applications logger in the console.
When running on fork I see it in the console, but not in the UIgertjan
09/30/2022, 7:26 AMRob Freedy
09/30/2022, 1:29 PM