forked from platypush/platypush
Log the canonical name of plugins when starting them.
This commit is contained in:
parent
5ab66e6746
commit
c7c31fb48d
1 changed files with 3 additions and 1 deletions
|
@ -230,7 +230,9 @@ class RunnablePlugin(Plugin):
|
||||||
if self.disable_monitor:
|
if self.disable_monitor:
|
||||||
return
|
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():
|
while not self.should_stop():
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue