Hannah Amundson
08/11/2020, 4:54 PMprefect.context.get("logger")
How do we get that logger inside of each of our classes/functions that are being called within tasks? Is the best practice to just pass it in as a parameter?Jim Crist-Harif
08/11/2020, 5:20 PMTask
) you can use the logger
attribute directly. Otherwise either getting from prefect.context
or calling prefect.utilities.logging.get_logger
directly should work the same.alex
08/11/2020, 5:56 PMlog_stdout
for your tasksHannah Amundson
08/12/2020, 4:11 PM