Skip to content
Snippets Groups Projects
Verified Commit 14378a75 authored by Quentin Duchemin's avatar Quentin Duchemin
Browse files

[MapCareTech] Reduce logging from DEBUG to INFO

parent 1ea16d9a
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ services:
REDIS_URL: redis://redis:6379/0
SITE_URL: https://carte.caretech.picasoft.net
# Do not allow non-authenticated users to create maps
LEAFLET_STORAGE_ALLOW_ANONYMOUS: False
LEAFLET_STORAGE_ALLOW_ANONYMOUS: "False"
PORT: 8000
volumes:
- app_uploads:/srv/umap/uploads
......
......@@ -26,5 +26,5 @@ umap collectstatic --noinput
echo "Compress static files..."
umap compress
echo "Launch uMap..."
echo "Launch uMap via uWSGI..."
exec $@
......@@ -110,7 +110,7 @@ LOGGING = {
},
'handlers': {
'console': {
'level': 'DEBUG',
'level': 'INFO',
'class': 'logging.StreamHandler',
'stream': sys.stdout,
'formatter': 'verbose'
......@@ -119,7 +119,7 @@ LOGGING = {
'loggers': {
'django': {
'handlers': ['console'],
'level': 'DEBUG',
'level': 'INFO',
'propagate': True,
},
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment