bug fix: logger issue

This commit is contained in:
Steve Nyemba 2025-05-16 11:02:18 -05:00
parent 4b34c746ae
commit b0cd0b85dc
2 changed files with 3 additions and 2 deletions

View File

@ -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"""

View File

@ -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 :