Pav Staz
07/02/2025, 11:49 AMMarvin
07/02/2025, 11:49 AMMarvin
07/02/2025, 11:50 AMlevel=20
means it's an INFO level log message. This is actually the standard Python logging system that Prefect builds upon, so it's working as intended. If you want to see the text representation instead of numbers when working with logs programmatically, you can convert the numeric level using Python's built-in logging.getLevelName()
function.
You can find more details about Prefect's logging system and customization options in the logging customization documentation.