Typo fix for excluded commands

(cherry picked from commit cf7087747b)
This commit is contained in:
Oliver Walters 2021-06-17 21:44:54 +10:00
parent 93e83d0bf9
commit f6241031f6
2 changed files with 2 additions and 3 deletions

View File

@ -26,10 +26,9 @@ def canAppAccessDatabase():
'flush', 'flush',
'loaddata', 'loaddata',
'dumpdata', 'dumpdata',
'makemirations', 'makemigrations',
'migrate', 'migrate',
'check', 'check',
'mediarestore',
'shell', 'shell',
'createsuperuser', 'createsuperuser',
'wait_for_db', 'wait_for_db',

View File

@ -97,7 +97,7 @@ DOCKER = _is_true(get_setting(
# Configure logging settings # Configure logging settings
log_level = get_setting( log_level = get_setting(
'INVENTREE_LOG_LEVEL', 'INVENTREE_LOG_LEVEL',
CONFIG.get('log_level', 'DEBUG') CONFIG.get('log_level', 'WARNING')
) )
logging.basicConfig( logging.basicConfig(