mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
report correct file for callback
This commit is contained in:
parent
5e46a0add6
commit
d850992526
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ class CallbackBase(AnsiblePlugin):
|
||||||
name = getattr(self, 'CALLBACK_NAME', 'unnamed')
|
name = getattr(self, 'CALLBACK_NAME', 'unnamed')
|
||||||
ctype = getattr(self, 'CALLBACK_TYPE', 'old')
|
ctype = getattr(self, 'CALLBACK_TYPE', 'old')
|
||||||
version = getattr(self, 'CALLBACK_VERSION', '1.0')
|
version = getattr(self, 'CALLBACK_VERSION', '1.0')
|
||||||
self._display.vvvv('Loading callback plugin %s of type %s, v%s from %s' % (name, ctype, version, __file__))
|
self._display.vvvv('Loading callback plugin %s of type %s, v%s from %s' % (name, ctype, version, sys.modules[self.__module__].__file__))
|
||||||
|
|
||||||
self.disabled = False
|
self.disabled = False
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue