verbose is only to screen

pull/4420/head
Brian Coca 2015-04-22 23:02:15 -04:00
parent 1ff83b43ae
commit 532aefc2c8
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ import textwrap
import sys
from ansible import constants as C
from ansible.errors import *
from ansible.errors import AnsibleError
from ansible.utils.color import stringc
class Display:
@ -84,7 +84,7 @@ class Display:
if host is None:
self.display(msg, color='blue')
else:
self.display("<%s> %s" % (host, msg), color='blue')
self.display("<%s> %s" % (host, msg), color='blue', screen_only=True)
def deprecated(self, msg, version, removed=False):
''' used to print out a deprecation message.'''