diff --git a/allianceauth/project_template/project_name/settings/base.py b/allianceauth/project_template/project_name/settings/base.py index 72c1ddb8..c9a45b6f 100644 --- a/allianceauth/project_template/project_name/settings/base.py +++ b/allianceauth/project_template/project_name/settings/base.py @@ -221,7 +221,7 @@ LOGGING = { 'backupCount': 5, # edit this line to change number of log backups }, 'extension_file': { - 'level': 'DEBUG', + 'level': 'INFO', 'class': 'logging.handlers.RotatingFileHandler', 'filename': os.path.join(BASE_DIR, 'log/extensions.log'), 'formatter': 'verbose', diff --git a/allianceauth/project_template/project_name/settings/local.py b/allianceauth/project_template/project_name/settings/local.py index 31f27fc1..8761facb 100644 --- a/allianceauth/project_template/project_name/settings/local.py +++ b/allianceauth/project_template/project_name/settings/local.py @@ -23,7 +23,7 @@ INSTALLED_APPS += [ ] # To change the logging level for extensions, uncomment the following line. -# LOGGING['handlers']['extension_file']['level'] = 'INFO' +# LOGGING['handlers']['extension_file']['level'] = 'DEBUG' # Enter credentials to use MySQL/MariaDB. Comment out to use sqlite3