Commit 532aefc2 by Brian Coca

verbose is only to screen

parent 1ff83b43
...@@ -23,7 +23,7 @@ import textwrap ...@@ -23,7 +23,7 @@ import textwrap
import sys import sys
from ansible import constants as C from ansible import constants as C
from ansible.errors import * from ansible.errors import AnsibleError
from ansible.utils.color import stringc from ansible.utils.color import stringc
class Display: class Display:
...@@ -84,7 +84,7 @@ class Display: ...@@ -84,7 +84,7 @@ class Display:
if host is None: if host is None:
self.display(msg, color='blue') self.display(msg, color='blue')
else: 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): def deprecated(self, msg, version, removed=False):
''' used to print out a deprecation message.''' ''' used to print out a deprecation message.'''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment