Merge pull request #22 from lnyemba/v2.2.0

bug fix: logger issue
This commit is contained in:
Steve L. Nyemba 2025-06-09 17:30:36 -05:00 committed by GitHub
commit 16dc2ca8b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 :