Fix for production docker environment

Values are passed as written resulting in `"WARNING"` being passed to python logger, which will complain and panic. Fix is simply to remove `"` from the value.
This commit is contained in:
Antonin Kral 2021-08-22 20:59:51 +02:00 committed by GitHub
parent b6df623554
commit 7f126e58d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@
# Ensure debug is false for a production setup
INVENTREE_DEBUG=False
INVENTREE_LOG_LEVEL="WARNING"
INVENTREE_LOG_LEVEL=WARNING
# Database configuration
# Note: The example setup is for a PostgreSQL database (change as required)