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

moved validate info from vvv to debug

This commit is contained in:
Brian Coca 2016-05-27 09:44:42 -04:00
parent 2261b2e59a
commit 011320793b
2 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@ class GalaxyAPI(object):
self.version = None
self.initialized = False
display.vvv('Validate TLS certificates: %s' % self._validate_certs)
display.debug('Validate TLS certificates: %s' % self._validate_certs)
# set the API server
if galaxy.options.api_server != C.GALAXY_SERVER:

View file

@ -56,7 +56,7 @@ class GalaxyRole(object):
self._install_info = None
self._validate_certs = not galaxy.options.ignore_certs
display.vvv('Validate TLS certificates: %s' % self._validate_certs)
display.debug('Validate TLS certificates: %s' % self._validate_certs)
self.options = galaxy.options
self.galaxy = galaxy