Merge "Remove useless info logging in check_valid_device"

This commit is contained in:
Jenkins 2016-07-27 09:53:02 +00:00 committed by Gerrit Code Review
commit 92e451fc0c
1 changed files with 2 additions and 3 deletions

View File

@ -473,9 +473,8 @@ class BaseLinuxConnector(InitiatorConnector):
root_helper=self._root_helper)
except putils.ProcessExecutionError as e:
LOG.error(_LE("Failed to access the device on the path "
"%(path)s: %(error)s %(info)s."),
{"path": path, "error": e.stderr,
"info": info})
"%(path)s: %(error)s."),
{"path": path, "error": e.stderr})
return False
# If the info is none, the path does not exist.
if info is None: