Skip to content
This repository has been archived by the owner on Nov 9, 2020. It is now read-only.

Commit

Permalink
vmdk_ops: Log error output on get_vsan_devfs_path. (#765)
Browse files Browse the repository at this point in the history
  • Loading branch information
brunotm authored and pdhamdhere committed Nov 22, 2016
1 parent b3b22bc commit d6090b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esx_service/vmdk_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def get_vsan_devfs_path(uuid):
fpath="/vmfs/devices/vsan/{0}".format(uuid)
if rc == 0 and os.path.isfile(fpath):
return fpath, True
logging.error("Failed to create devFS node for %s", uuid)
logging.error("Failed to create devFS node for %s, error: %s", uuid, out)
return None, False

# Clean up vsan devfs path
Expand Down

0 comments on commit d6090b9

Please # to comment.