Mathijs Carlu
02/21/2022, 3:04 PMget_run_logger().info('message'), as the print() function also does not seem to produce any logs.Anna Geller
from prefect import task, get_run_logger
@task
def marvins_favorite_task():
    logger = get_run_logger()
    <http://logger.info|logger.info>("Hello from the Marvin's favorite task!")Zanie
Zanie
Mathijs Carlu
02/22/2022, 8:44 AMZanie
Zanie
FlowRunner ?Mathijs Carlu
02/23/2022, 12:53 PMAnna Geller