Giacomo Chiarella
11/19/2024, 3:24 PMMarvin
11/19/2024, 3:25 PMGiacomo Chiarella
11/27/2024, 4:00 PMMarvin
11/27/2024, 4:01 PMget_run_logger()python
     from prefect import flow, task, get_run_logger
     @task
     def my_task():
         logger = get_run_logger()
         <http://logger.info|logger.info>("Log message from a task.")
     @flow
     def my_flow():
         my_task()get_run_logger()Giacomo Chiarella
11/27/2024, 4:01 PMMarvin
11/27/2024, 4:02 PMrequests