Skip to content
Snippets Groups Projects
Commit 7971f17c authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

fix(ci): fix steering logging

parent 17d6cfd3
No related branches found
No related tags found
No related merge requests found
Pipeline #3444 passed
...@@ -81,6 +81,19 @@ variables: ...@@ -81,6 +81,19 @@ variables:
ALLOWED_HOSTS = ["*"] ALLOWED_HOSTS = ["*"]
SITE_URL = "$STEERING_ORIGIN" SITE_URL = "$STEERING_ORIGIN"
DEBUG = True DEBUG = True
LOGGING = {
"version": 1,
"disable_existing_loggers": False,
"handlers": {
"console": {
"class": "logging.StreamHandler",
},
},
"root": {
"handlers": ["console"],
"level": "INFO",
},
}
EOF EOF
make initialize run.prod make initialize run.prod
- name: autoradio/tank:unstable - name: autoradio/tank:unstable
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment