Jari Rosti
01/18/2023, 7:34 AMPREFECT_LOGGING_EXTRA_LOGGERS: mylogger
on agent and on orion server, and various combinations of setting the handler for my logger in the flow.
I have self-hosted Prefect 2.7.8. Any ideas what should I check in the configuration?Tim Galvin
01/18/2023, 7:44 AMTim Galvin
01/18/2023, 7:46 AMprefect.logging.configuration.py
that made things work.Aleksandr Liadov
01/18/2023, 9:02 AMJari Rosti
01/18/2023, 9:40 AMlogger = get_run_logger()
for h in logger.logger.handlers:
root.addHandler(h)
Tim Galvin
01/18/2023, 10:08 AM