Skip to content

Commit

Permalink
add root logger handler
Browse files Browse the repository at this point in the history
  • Loading branch information
ZHAO Yijun committed Sep 3, 2018
1 parent 41c043a commit 53d1807
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pymesos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@
from .executor import MesosExecutorDriver
from .operator_v1 import MesosOperatorMasterDriver, MesosOperatorAgentDriver
from .utils import encode_data, decode_data
import logging

__VERSION__ = '0.3.7'

fmt = '%(asctime)-15s [%(levelname)s] [%(threadName)s] [%(name)-9s:%(lineno)d] %(message)s'
logging.basicConfig(format=fmt, level=logging.INFO)


__VERSION__ = '0.3.8'

__all__ = (
'Scheduler',
Expand Down

0 comments on commit 53d1807

Please sign in to comment.