Merge "libdm: GetDmDevicePathByName log warning"

This commit is contained in:
Treehugger Robot 2018-09-06 21:58:30 +00:00 committed by Gerrit Code Review
commit e36f911a92

View file

@ -278,7 +278,7 @@ bool DeviceMapper::GetDmDevicePathByName(const std::string& name, std::string* p
struct dm_ioctl io;
InitIo(&io, name);
if (ioctl(fd_, DM_DEV_STATUS, &io) < 0) {
PLOG(ERROR) << "DM_DEV_STATUS failed for " << name;
PLOG(WARNING) << "DM_DEV_STATUS failed for " << name;
return false;
}