remove suppression of log messages

This commit is contained in:
Manuel Amador (Rudd-O) 2016-08-29 03:44:27 +00:00
parent dce191f7dd
commit 19253192b7

View File

@ -60,9 +60,6 @@ class LoggingEmu():
def debug(self, *a, **kw):
if not debug_enabled:
return
for p in ("copy", "write", "Unblocking"):
if a[0].startswith(p):
return
self._print(syslog.LOG_DEBUG, *a, **kw)
def info(self, *a, **kw):
self._print(syslog.LOG_INFO, *a, **kw)