This project is interesting to me.
I think python's library should not use root logger like:
import logging
logging.warn('this is a warning')
refs: http://pieces.openpolitics.com/2012/04/python-logging-best-practices/
Would you replace root logger like:
from logging import getLogger
logger = getLogger(__name__)
logger.warn('this is a warning')
This project is interesting to me.
I think python's library should not use root logger like:
refs: http://pieces.openpolitics.com/2012/04/python-logging-best-practices/
Would you replace root logger like: