mirror of https://gitee.com/openkylin/libvirt.git
Corrected log level of WWN path message
* src/node_device/node_device_linux_sysfs.c: open_wwn_file() the VIR_ERROR resllay should be just a VIR_DEBUG
This commit is contained in:
parent
e5df24a11c
commit
2dccf5ef07
|
@ -51,7 +51,7 @@ static int open_wwn_file(const char *prefix,
|
|||
|
||||
/* fd will be closed by caller */
|
||||
if ((*fd = open(wwn_path, O_RDONLY)) != -1) {
|
||||
VIR_ERROR(_("Opened WWN path '%s' for reading"),
|
||||
VIR_DEBUG(_("Opened WWN path '%s' for reading"),
|
||||
wwn_path);
|
||||
} else {
|
||||
VIR_ERROR(_("Failed to open WWN path '%s' for reading"),
|
||||
|
|
Loading…
Reference in New Issue