bug fix: logger issue
This commit is contained in:
parent
4b34c746ae
commit
b0cd0b85dc
|
@ -1,6 +1,6 @@
|
|||
__app_name__ = 'data-transport'
|
||||
__author__ = 'The Phi Technology'
|
||||
__version__= '2.2.12'
|
||||
__version__= '2.2.14'
|
||||
__email__ = "info@the-phi.com"
|
||||
__edition__= 'community'
|
||||
__license__=f"""
|
||||
|
|
|
@ -22,7 +22,8 @@ class IO:
|
|||
plugins = _args['plugins'] if 'plugins' in _args else None
|
||||
|
||||
self._agent = _agent
|
||||
self._ixloader = plugin_ix.Loader () #--
|
||||
# self._ixloader = plugin_ix.Loader () #-- must indicate where the plugin registry file is
|
||||
self._ixloader = plugin_ix.Loader (registry=plugin_ix.Registry(folder=transport.registry.REGISTRY_PATH))
|
||||
if plugins :
|
||||
self.init_plugins(plugins)
|
||||
# for _ref in plugins :
|
||||
|
|
Loading…
Reference in New Issue