mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 19:31:26 -07:00
fixed signature for init on callbacks
also removed passing display to base class which already handles this
This commit is contained in:
parent
e1bcb43e76
commit
3e01516783
7 changed files with 14 additions and 14 deletions
|
@ -28,9 +28,9 @@ class CallbackModule(CallbackBase):
|
|||
CALLBACK_NAME = 'syslog_json'
|
||||
CALLBACK_NEEDS_WHITELIST = True
|
||||
|
||||
def __init__(self, display):
|
||||
def __init__(self):
|
||||
|
||||
super(CallbackModule, self).__init__(display)
|
||||
super(CallbackModule, self).__init__()
|
||||
|
||||
self.logger = logging.getLogger('ansible logger')
|
||||
self.logger.setLevel(logging.DEBUG)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue