Add new logger to PipeIO

This commit is contained in:
R. Richard 2019-06-20 16:07:26 +02:00
parent dc42e0f4d0
commit 323300a676
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ from tornado.ioloop import IOLoop
from tfw.event_handlers import EventHandlerBase
from tfw.builtins import PipeIOEventHandler
from tfw.config.log import TFWLog
from pipe_io_auxlib import (
SignMessagePipeIOEventHandler, VerifyMessagePipeIOEventHandler,
@ -13,7 +14,7 @@ from pipe_io_auxlib import (
FSMPipeIOEventHandler
)
logging.basicConfig(level=logging.DEBUG)
LOG = logging.getLogger(__name__)
if __name__ == '__main__':