summaryrefslogtreecommitdiff
path: root/lib/filters
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2019-03-13 12:58:13 +0100
committerZdenek Kabelac <zkabelac@redhat.com>2019-03-20 14:37:44 +0100
commit74b5f228383d29ff84293a3691ecc02f023512ad (patch)
tree0d3b642f5e7ba14c4360fe2cadc7ae28687ab86f /lib/filters
parentdc6dea40331687b8740cc48833f4c7c42a2db1a1 (diff)
downloadlvm2-74b5f228383d29ff84293a3691ecc02f023512ad.tar.gz
debug: use log_warn
This reports are not causing command failure, so report them as warning.
Diffstat (limited to 'lib/filters')
-rw-r--r--lib/filters/filter-mpath.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/filters/filter-mpath.c b/lib/filters/filter-mpath.c
index 25a507c55..466d9c977 100644
--- a/lib/filters/filter-mpath.c
+++ b/lib/filters/filter-mpath.c
@@ -211,12 +211,12 @@ static int _native_dev_is_mpath(struct dev_filter *f, struct device *dev)
return_0;
break;
default: /* 0, error. */
- log_error("Failed to get primary device for %d:%d.", major, minor);
+ log_warn("Failed to get primary device for %d:%d.", major, minor);
return 0;
}
if (dm_snprintf(path, sizeof(path), "%s/block/%s/holders", sysfs_dir, name) < 0) {
- log_error("Sysfs path to check mpath is too long.");
+ log_warn("Sysfs path to check mpath is too long.");
return 0;
}
@@ -225,7 +225,7 @@ static int _native_dev_is_mpath(struct dev_filter *f, struct device *dev)
return 0;
if (!S_ISDIR(info.st_mode)) {
- log_error("Path %s is not a directory.", path);
+ log_warn("Path %s is not a directory.", path);
return 0;
}