From b0cd0b85dce58d7747a0a03962431bdba8a2b71c Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Fri, 16 May 2025 11:02:18 -0500 Subject: [PATCH] bug fix: logger issue --- info/__init__.py | 2 +- transport/iowrapper.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/info/__init__.py b/info/__init__.py index 98966f9..3e6c1ca 100644 --- a/info/__init__.py +++ b/info/__init__.py @@ -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""" diff --git a/transport/iowrapper.py b/transport/iowrapper.py index ff49906..3fc94c7 100644 --- a/transport/iowrapper.py +++ b/transport/iowrapper.py @@ -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 :