mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add logging
This commit is contained in:
parent
eeab9f2f8e
commit
cab5f62772
1 changed files with 3 additions and 0 deletions
|
@ -8,12 +8,15 @@ Salt compatibility code
|
|||
from __future__ import absolute_import, unicode_literals, print_function
|
||||
import sys
|
||||
import types
|
||||
import logging
|
||||
|
||||
# Import 3rd-party libs
|
||||
from salt.exceptions import SaltException
|
||||
from salt.ext.six import binary_type, string_types, text_type, integer_types
|
||||
from salt.ext.six.moves import cStringIO, StringIO
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
HAS_XML = True
|
||||
try:
|
||||
# Python >2.5
|
||||
|
|
Loading…
Add table
Reference in a new issue