diff options
author | Georg Pfuetzenreuter | 2022-12-18 17:13:33 +0100 |
---|---|---|
committer | Georg Pfuetzenreuter | 2022-12-18 17:14:50 +0100 |
commit | 9af6b1d051e960bf66398bc226c8e2fec4d55880 (patch) | |
tree | f8aa9f9d9fcde1c409dd8cb6889648b2759eee9a | |
parent | 7819d7980bddb77ed19ad5d252461be16e2aa7df (diff) | |
download | takahe-libertacasa-saml.tar.gz takahe-libertacasa-saml.tar.bz2 takahe-libertacasa-saml.zip |
Disable debug modelibertacasa-saml
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
-rw-r--r-- | takahe/settings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/takahe/settings.py b/takahe/settings.py index 02f91dd..6623d01 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. @@ -467,7 +467,7 @@ SAML_CONFIG = { 'remote': [{"url": "https://libsso.net/realms/LibertaCasa/protocol/saml/descriptor"},], }, - 'debug': 1, + 'debug': 0, 'key_file': '__REPLACE_ME__', # private part 'cert_file': '__REPLACE_ME__', # public part @@ -489,6 +489,6 @@ LOGGING = { }, 'root': { 'handlers': ['console'], - 'level': 'DEBUG', + 'level': 'INFO', }, } |