mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 17:33:54 +00:00
Merge pull request #116 from s0undt3ch/hotfix/proper-logging-import
Import the logging module directly. Fixes #115.
This commit is contained in:
commit
5a30e80843
@ -6,6 +6,7 @@ This is run by ``salt-api`` and started in a multiprocess.
|
||||
# pylint: disable=C0103
|
||||
|
||||
# Import Python libs
|
||||
import logging
|
||||
import os
|
||||
import signal
|
||||
import sys
|
||||
@ -24,7 +25,7 @@ except ImportError as exc:
|
||||
# Import Salt libs
|
||||
import salt.log
|
||||
|
||||
logger = salt.log.logging.getLogger(__name__)
|
||||
logger = logging.getLogger(__name__)
|
||||
cpy_min = '3.2.2'
|
||||
|
||||
def __virtual__():
|
||||
|
@ -157,6 +157,7 @@ functionality.
|
||||
|
||||
# Import Python libs
|
||||
import functools
|
||||
import logging
|
||||
import os
|
||||
import json
|
||||
import textwrap
|
||||
@ -173,7 +174,7 @@ import salt.log
|
||||
# Import salt-api libs
|
||||
import saltapi
|
||||
|
||||
logger = salt.log.logging.getLogger(__name__)
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
def salt_token_tool():
|
||||
|
Loading…
Reference in New Issue
Block a user