Skip to content

Commit

Permalink
Merge pull request #49 from cloudify-cosmo/CFY-5906-reduce-fabric-env…
Browse files Browse the repository at this point in the history
…-logs-to-debug

CFY-5906 reduce logging level of fabric env init to debug
  • Loading branch information
nir0s authored Sep 1, 2016
2 parents ffa8e4f + 834bf2d commit a99d79c
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 a99d79c

Please sign in to comment.