ifstate 1.8.3__tar.gz → 1.8.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ifstate-1.8.3 → ifstate-1.8.4}/PKG-INFO +1 -1
- {ifstate-1.8.3 → ifstate-1.8.4}/ifstate.egg-info/PKG-INFO +1 -1
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/__init__.py +1 -1
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/log.py +1 -6
- {ifstate-1.8.3 → ifstate-1.8.4}/LICENSE +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/README.md +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/ifstate/__init__.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/ifstate/ifstate.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/ifstate/shell.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/ifstate.egg-info/SOURCES.txt +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/ifstate.egg-info/dependency_links.txt +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/ifstate.egg-info/entry_points.txt +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/ifstate.egg-info/requires.txt +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/ifstate.egg-info/top_level.txt +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/address/__init__.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/bpf/__init__.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/bpf/ctypes.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/bpf/map.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/brport/__init__.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/exception.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/link/__init__.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/link/base.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/link/physical.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/link/tun.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/link/veth.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/neighbour/__init__.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/parser/__init__.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/parser/base.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/parser/yaml.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/routing/__init__.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/sysctl/__init__.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/tc/__init__.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/util.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/wireguard/__init__.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/libifstate/xdp/__init__.py +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/schema/ifstate.conf.schema.json +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/setup.cfg +0 -0
- {ifstate-1.8.3 → ifstate-1.8.4}/setup.py +0 -0
@@ -7,12 +7,7 @@ import sys
|
|
7
7
|
logger = logging.getLogger('ifstate')
|
8
8
|
logger.propagate = False
|
9
9
|
|
10
|
-
formatter = logging.Formatter('%(bol)s%(prefix)s%(style)s%(message)s%(eol)s'
|
11
|
-
'bol': '',
|
12
|
-
'eol': '',
|
13
|
-
'prefix': '',
|
14
|
-
})
|
15
|
-
|
10
|
+
formatter = logging.Formatter('%(bol)s%(prefix)s%(style)s%(message)s%(eol)s')
|
16
11
|
|
17
12
|
class IfStateLogFilter(logging.Filter):
|
18
13
|
def __init__(self, is_terminal):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|