Browse Source

fix: reduce unnecessary error traceback logs

master
zhayujie 1 year ago
parent
commit
aae9b64833
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      plugins/plugin_manager.py

+ 1
- 1
plugins/plugin_manager.py View File

@@ -145,7 +145,7 @@ class PluginManager:
try:
instance = plugincls()
except Exception as e:
logger.exception("Failed to init %s, diabled. %s" % (name, e))
logger.warn("Failed to init %s, diabled. %s" % (name, e))
self.disable_plugin(name)
failed_plugins.append(name)
continue


Loading…
Cancel
Save