log which method was used to get plugins

This commit is contained in:
Jakub Trllo 2023-11-02 13:46:05 +01:00
parent e9699d2cef
commit 3428ec08a5

View file

@ -1001,9 +1001,10 @@ class ModulesManager:
paths = method(*args, **kwargs)
except Exception:
self.log.warning(
"Failed to get plugin paths from module {}.".format(
module.__class__.__name__
),
(
"Failed to get plugin paths from module"
" '{}' using '{}'."
).format(module.__class__.__name__, method_name),
exc_info=True
)
continue