Import the logging modules directly

This commit is contained in:
R. Richard
2019-06-10 15:32:45 +02:00
parent bed99c20be
commit 105a574d7f
21 changed files with 31 additions and 30 deletions

View File

@ -1,7 +1,11 @@
import logging
from tornado.ioloop import IOLoop
from tfw.server import TFWServer
logging.basicConfig(level=logging.DEBUG)
if __name__ == '__main__':
TFWServer().listen()