Browse Source

bug fix: logger issue

Steve Nyemba 1 month ago
parent
commit
b0cd0b85dc
2 changed files with 3 additions and 2 deletions
  1. 1 1
      info/__init__.py
  2. 2 1
      transport/iowrapper.py

+ 1 - 1
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"""

+ 2 - 1
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 :