Skip to content

Commit

Permalink
CFY-5906 reduce logging level of fabric env init to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
nir0s committed Sep 1, 2016
1 parent ffa8e4f commit 834bf2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fabric_plugin/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ def host_string(self):

def _fabric_env(fabric_env, warn_only):
"""Prepares fabric environment variables configuration"""
ctx.logger.info('Preparing fabric environment...')
ctx.logger.debug('Preparing fabric environment...')
fabric_env = fabric_env or {}
credentials = CredentialsHandler(ctx, fabric_env)
final_env = {}
Expand Down Expand Up @@ -533,7 +533,7 @@ def _fabric_env(fabric_env, warn_only):
raise exceptions.NonRecoverableError(
'Access credentials not supplied '
'(you must supply at least one of key_filename/key or password)')
ctx.logger.info('Environment prepared successfully')
ctx.logger.debug('Environment prepared successfully')
return final_env


Expand Down

0 comments on commit 834bf2d

Please sign in to comment.