Compare commits

...

1 Commits

Author SHA1 Message Date
5608ffdd05
Disable debug mode
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
2022-12-18 17:13:33 +01:00

View File

@ -65,7 +65,7 @@ class Settings(BaseSettings):
ENVIRONMENT: Environments = "production"
#: Should django run in debug mode?
DEBUG: bool = True
DEBUG: bool = False
#: Set a secret key used for signing values such as sessions. Randomized
#: by default, so you'll logout everytime the process restarts.
@ -489,6 +489,6 @@ LOGGING = {
},
'root': {
'handlers': ['console'],
'level': 'DEBUG',
'level': 'INFO',
},
}