diff options
author | Sorin Sbarnea <ssbarnea@users.noreply.github.com> | 2018-12-07 16:11:17 +0000 |
---|---|---|
committer | Brian Coca <bcoca@users.noreply.github.com> | 2018-12-07 11:11:17 -0500 |
commit | cba3290621f3a961d67ad91c424e97d443f1733b (patch) | |
tree | 9d6b38164bba9fc2830c81dfa988f8af03274e15 /lib/ansible | |
parent | 7aa11c441d64eed0e53fb1390c4e09711a3539d5 (diff) | |
download | ansible-cba3290621f3a961d67ad91c424e97d443f1733b.tar.gz |
Record host specific messages to log files (#28661)
Fixes #28660
Change-Id: I0028f16320fd63c6ee0fa3be942fc88c555e4dcb
Signed-off-by: Sorin Sbarnea <ssbarnea@redhat.com>
Diffstat (limited to 'lib/ansible')
-rw-r--r-- | lib/ansible/utils/display.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/utils/display.py b/lib/ansible/utils/display.py index 51117761e1..108042f249 100644 --- a/lib/ansible/utils/display.py +++ b/lib/ansible/utils/display.py @@ -205,7 +205,7 @@ class Display(with_metaclass(Singleton, object)): if host is None: self.display(msg, color=C.COLOR_VERBOSE) else: - self.display("<%s> %s" % (host, msg), color=C.COLOR_VERBOSE, screen_only=True) + self.display("<%s> %s" % (host, msg), color=C.COLOR_VERBOSE) def deprecated(self, msg, version=None, removed=False): ''' used to print out a deprecation message.''' |