Import the logging module directly

This commit is contained in:
R. Richard 2019-06-10 15:35:09 +02:00
parent 0104a209bf
commit 8b04bc0477
1 changed files with 2 additions and 1 deletions

View File

@ -1,3 +1,4 @@
import logging
from ast import literal_eval
from functools import partial
from signal import signal, SIGTERM, SIGINT
@ -12,10 +13,10 @@ from tfw.components import TerminalCommands, LogMonitoringEventHandler
from tfw.components import FSMManagingEventHandler, DirectorySnapshottingEventHandler
from tfw.components import FrontendEventHandler, MessageSender
from tfw.config import TFWENV
from tfw.config.logs import logging
from tao.config import TAOENV
LOG = logging.getLogger(__name__)
logging.basicConfig(level=logging.DEBUG)
def cenator(history):