diff --git a/takahe/settings.py b/takahe/settings.py index 02f91dd..606b677 100644 --- a/takahe/settings.py +++ b/takahe/settings.py @@ -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', }, }