GuidesDebugging

Debugging

If you happen to encounter some sort of bug in Zipline, you can enable debug logs to help us figure out the problem.

Danger

DEBUG mode can be VERY verbose, it is recomened to take a good look at the logs before sending them anywhere.

Note

It is not recommended to enable DEBUG mode in production, as it could cause performance issues.

Enabling Debug Logs

You must set the DEBUG environment variable to true. This can be done in a few different ways:

In your docker-compose.yml

environment:
- DEBUG=true
Last updated: 8/4/2023
Edit this page on GitHub