🔥 get rid of logging

This commit is contained in:
chfw 2018-07-28 01:29:17 +01:00
parent 3032acb19b
commit 991200eadf
1 changed files with 0 additions and 12 deletions

View File

@ -10,15 +10,3 @@
import logging
from lml._version import __version__ # flake8: noqa
from lml._version import __author__ # flake8: noqa
try:
from logging import NullHandler
except ImportError:
class NullHandler(logging.Handler):
"""
Null handler for logging
"""
def emit(self, record):
pass
logging.getLogger(__name__).addHandler(NullHandler())