Log the canonical name of plugins when starting them.

This commit is contained in:
Fabio Manganiello 2024-02-27 00:02:30 +01:00
parent 5ab66e6746
commit c7c31fb48d
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 3 additions and 1 deletions

View File

@ -230,7 +230,9 @@ class RunnablePlugin(Plugin):
if self.disable_monitor:
return
self.logger.info('Starting %s', self.__class__.__name__)
self.logger.info(
'Starting plugin [%s]', get_plugin_name_by_class(self.__class__)
)
while not self.should_stop():
try: