2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-14 02:55:41 +00:00

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

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)