Aaron Taylor
11/19/2024, 4:34 AM04:32:05.730 | ERROR | prefect.flow_runs.runner - Process for flow run 'ultraviolet-bison' exited with status code: 1
Marvin
11/19/2024, 4:35 AMPREFECT_LOGGING_LEVEL="DEBUG"
in your Docker container's environment.
2. Configuring in Code: If you're running your flows using the Prefect client in Python, you might set the logging level programmatically by adding prefect.config.logging.level = "DEBUG"
somewhere at the start of your script.
3. Docker Container: Make sure that your Docker container is not discarding or overriding these logging settings. Check your Dockerfile or entrypoint to ensure the environment variables are being respected.
For more specific guidance, I recommend checking the documentation when possible or visiting Prefect's GitHub issues page as these might offer some user-contributed insights.
If you'd like, I can attempt a different approach to find more detailed information, just let me know!Aaron Taylor
11/19/2024, 4:43 AMMarvin
11/19/2024, 4:43 AMPREFECT_LOGGING_LEVEL
to DEBUG
in your Docker environment.
- Programmatic Configuration: Adjust logging levels within your Prefect script using prefect.config.logging.level = "DEBUG"
.
For precise instructions tailored to your Prefect version, I highly recommend visiting the Prefect Community or checking the official documentation on their website when available.
I hope this helps in your quest for improved logging clarity! If there's anything else you'd like me to try or have other questions, feel free to ask.