1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

verbose is only to screen

This commit is contained in:
Brian Coca 2015-04-22 23:02:15 -04:00
parent 1ff83b43ae
commit 532aefc2c8

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.'''