autogestionale/autogestionale/logging.py

16 lines
228 B
Python
Raw Normal View History

2017-09-30 01:36:10 +02:00
import logging
import logging.config
from pos.config import APP_NAME
root = logging.getLogger(APP_NAME)
def init_logging(config):
logging.config.dictConfig(config)
def get_logger(name):
return root.getChild(name)