Implement abstract method for logger.

This commit is contained in:
Bastian Kleineidam 2012-06-20 00:15:45 +02:00
parent 2dfe9d4b4f
commit a6eaae2c38

View file

@ -43,6 +43,10 @@ class NoneLogger (Logger):
"""
pass
def log_url (self, url_data):
"""Do nothing."""
pass
def end_output (self):
"""
Do nothing.