Merge pull request #1884 from SchrodingersGat/typo-fix

logging.get -> logging.getLogger
This commit is contained in:
Oliver 2021-07-30 00:09:43 +10:00 committed by GitHub
commit eb883d7e70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ import os
import logging
logger = logging.get('inventree')
logger = logging.getLogger('inventree')
workers = os.environ.get('INVENTREE_GUNICORN_WORKERS', None)