Remove console noise from logging handler init.

This commit is contained in:
Tyson Clugg 2015-08-12 12:02:56 +10:00
parent 9dd1a85dff
commit f02df498a2

View file

@ -13,7 +13,6 @@ class DDPHandler(logging.Handler):
"""Logging handler that streams log events via DDP to the current client."""
def __init__(self, *args, **kwargs):
print(self.__class__, args, kwargs)
self.logger = logging.getLogger('django.db.backends')
self.logger.info('Test')
super(DDPHandler, self).__init__(*args, **kwargs)