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

added v for least verbose display function

This commit is contained in:
Brian Coca 2016-03-07 13:16:43 -05:00
parent 299d93f6e9
commit 325fccfa78

View file

@ -159,6 +159,9 @@ class Display:
else:
logger.info(msg2)
def v(self, msg, host=None):
return self.verbose(msg, host=host, caplevel=0)
def vv(self, msg, host=None):
return self.verbose(msg, host=host, caplevel=1)