Merge "Powervm driver now logs ssh stderr to warning"

This commit is contained in:
Jenkins 2013-09-04 15:24:41 +00:00 committed by Gerrit Code Review
commit b2833437b0
2 changed files with 4 additions and 4 deletions

View File

@ -560,7 +560,7 @@ class PowerVMLocalVolumeAdapter(PowerVMDiskAdapter):
error_text = stderr.strip()
if error_text:
LOG.debug(_("Found error stream for command \"%(cmd)s\": "
LOG.warn(_("Found error stream for command \"%(cmd)s\": "
"%(error_text)s"),
{'cmd': cmd, 'error_text': error_text})
@ -577,7 +577,7 @@ class PowerVMLocalVolumeAdapter(PowerVMDiskAdapter):
error_text = stderr.read()
if error_text:
LOG.debug(_("Found error stream for command \"%(command)s\":"
LOG.warn(_("Found error stream for command \"%(command)s\":"
" %(error_text)s"),
{'command': command, 'error_text': error_text})

View File

@ -725,7 +725,7 @@ class BaseOperator(object):
error_text = stderr.strip()
if error_text:
LOG.debug(_("Found error stream for command \"%(cmd)s\": "
LOG.warn(_("Found error stream for command \"%(cmd)s\": "
"%(error_text)s"),
{'cmd': cmd, 'error_text': error_text})
@ -742,7 +742,7 @@ class BaseOperator(object):
error_text = stderr.read()
if error_text:
LOG.debug(_("Found error stream for command \"%(command)s\":"
LOG.warn(_("Found error stream for command \"%(command)s\":"
" %(error_text)s"),
{'command': command, 'error_text': error_text})