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
Add DEBUG=true to the .env or .env.local file. Or export DEBUG=true then run yarn/npm start
Human Readable Byte Sizes
Some config values support human readable byte siz...
Importing Data
This guide may be useful if you are migrating from...
Last updated: 11/7/2023
Edit this page on GitHub