Ian Harvey
05/11/2021, 3:37 PMPREFECT__LOGGING__EXTRA_LOGGERS
accept wildcards? So instead of something like
flow.run_config = LocalRun(
env={
"PREFECT__LOGGING__EXTRA_LOGGERS": json.dumps([
'foo.bar.aaa',
'foo.bar.bbb',
])
}
)
I could use
flow.run_config = LocalRun(
env={
"PREFECT__LOGGING__EXTRA_LOGGERS": json.dumps([
'foo.bar.*'
])
}
)
With larger projects it's quite time consuming to add each class individually.Kevin Kho
Ian Harvey
05/11/2021, 3:43 PMZanie
foo.bar
should include all of the logs from foo.bar.aaa
and foo.bar.bbb
Ian Harvey
05/11/2021, 3:47 PMZanie
Marvin
05/11/2021, 3:54 PM