1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/tests/__init__.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
461 B
Python
Raw Normal View History

2013-03-27 18:17:11 -04:00
import logging
import warnings
from pelican.log import log_warnings
# redirect warnings module to use logging instead
log_warnings()
# setup warnings to log DeprecationWarning's and error on
# warnings in pelican's codebase
warnings.simplefilter("default", DeprecationWarning)
warnings.filterwarnings("error", ".*", Warning, "pelican")
# Add a NullHandler to silence warning about no available handlers
2013-03-27 18:17:11 -04:00
logging.getLogger().addHandler(logging.NullHandler())