mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #15235 from dagwieers/method_name-in-warning
Add the method_name to the catchall warning when using callback plugins
This commit is contained in:
commit
e7f2395487
1 changed files with 1 additions and 1 deletions
|
@ -319,4 +319,4 @@ class TaskQueueManager:
|
|||
method(*args, **kwargs)
|
||||
except Exception as e:
|
||||
#TODO: add config toggle to make this fatal or not?
|
||||
display.warning(u"Failure when attempting to use callback plugin (%s): %s" % (to_unicode(callback_plugin), to_unicode(e)))
|
||||
display.warning(u"Failure using method (%s) in callback plugin (%s): %s" % (to_unicode(method_name), to_unicode(callback_plugin), to_unicode(e)))
|
||||
|
|
Loading…
Reference in a new issue