mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Don't remove invocation from the result in the log callback
Fixes #2064.
This commit is contained in:
parent
85fb8494c5
commit
f12dbd431a
1 changed files with 1 additions and 0 deletions
|
@ -31,6 +31,7 @@ def log(host, category, data):
|
|||
# avoid logging extraneous data from facts
|
||||
data = 'omitted'
|
||||
else:
|
||||
data = data.copy()
|
||||
invocation = data.pop('invocation', None)
|
||||
data = json.dumps(data)
|
||||
if invocation is not None:
|
||||
|
|
Loading…
Reference in a new issue