fix exception handling
parent
bdf0fe27e8
commit
ee1e7b0d52
|
@ -140,6 +140,7 @@ class ModuleLoader:
|
||||||
module_path = path_join(path, module)
|
module_path = path_join(path, module)
|
||||||
module_data = self.get_module_info(module_path)
|
module_data = self.get_module_info(module_path)
|
||||||
modules.update(module_data)
|
modules.update(module_data)
|
||||||
except:
|
except Exception as e:
|
||||||
|
self.logger.debug(f"Error loading module {module}: {e}")
|
||||||
pass
|
pass
|
||||||
return modules
|
return modules
|
||||||
|
|
Loading…
Reference in New Issue