diff options
| author | Seth Vidal <skvidal@fedoraproject.org> | 2013-06-28 21:28:29 +0000 |
|---|---|---|
| committer | Seth Vidal <skvidal@fedoraproject.org> | 2013-06-28 21:28:29 +0000 |
| commit | 8c8e3675cb586b6a4e15673b309dcbedcb804c87 (patch) | |
| tree | fb698208567e27d5bb0d96fe84843bd316b83653 /callback_plugins | |
| parent | d4f08e57b073fb7aaf9e84316c3380c08759d26d (diff) | |
| download | ansible-8c8e3675cb586b6a4e15673b309dcbedcb804c87.tar.gz ansible-8c8e3675cb586b6a4e15673b309dcbedcb804c87.tar.xz ansible-8c8e3675cb586b6a4e15673b309dcbedcb804c87.zip | |
don't add the module invocation
and check {{ }} syntax in the logger
Diffstat (limited to 'callback_plugins')
| -rw-r--r-- | callback_plugins/logdetail.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/callback_plugins/logdetail.py b/callback_plugins/logdetail.py index 87b422652..71640f055 100644 --- a/callback_plugins/logdetail.py +++ b/callback_plugins/logdetail.py @@ -107,7 +107,8 @@ class LogMech(object): name = invoc['module_name'] del(data['invocation']) - data.update(invoc) + #don't add this since it can often contain complete passwords :( + #data.update(invoc) if task: name = task.name |
