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