Cody
11/28/2023, 9:09 PMget_run_logger()
to log during my flow and task runs.
However I run into the issue when developing locally that the logger throws an error if it is run without a flow or task run context.
Its particularly annoying when I use pycharm's debugger because if I use the debugger on a "dummy" flow then the cloud UI tends to get messy with one-off flows.
Has anyone faced this issue and figured out a fix?Tim Galvin
11/29/2023, 1:46 AMexport PREFECT_LOGGING_EXTRA_LOGGERS="flint"
to attach the prefect api handler that way.Manoj Ravi
12/01/2023, 9:28 AMTim Galvin
12/02/2023, 12:44 PM