From cba3290621f3a961d67ad91c424e97d443f1733b Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Fri, 7 Dec 2018 16:11:17 +0000 Subject: [PATCH] Record host specific messages to log files (#28661) Fixes #28660 Change-Id: I0028f16320fd63c6ee0fa3be942fc88c555e4dcb Signed-off-by: Sorin Sbarnea --- lib/ansible/utils/display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.'''