diff mbox

Revert 'multipathd: Do not print misleading message "not found in pathvec"'

Message ID 1462267133-15935-1-git-send-email-hare@suse.de (mailing list archive)
State Not Applicable, archived
Delegated to: Mike Snitzer
Headers show

Commit Message

Hannes Reinecke May 3, 2016, 9:18 a.m. UTC
As discussed on the mailing list the logging messages should remain,
so revert the patch, increase the logging level and update the
message itself to be more instructive.

Signed-off-by: Hannes Reinecke <hare@suse.com>
---
 libmultipath/structs.c | 2 ++
 1 file changed, 2 insertions(+)
diff mbox

Patch

diff --git a/libmultipath/structs.c b/libmultipath/structs.c
index 937e4a2..502d98e 100644
--- a/libmultipath/structs.c
+++ b/libmultipath/structs.c
@@ -418,6 +418,7 @@  find_path_by_dev (vector pathvec, char * dev)
 		if (!strcmp(pp->dev, dev))
 			return pp;
 
+	condlog(4, "%s: dev not found in pathvec", dev);
 	return NULL;
 }
 
@@ -434,6 +435,7 @@  find_path_by_devt (vector pathvec, char * dev_t)
 		if (!strcmp(pp->dev_t, dev_t))
 			return pp;
 
+	condlog(4, "%s: dev_t not found in pathvec", dev_t);
 	return NULL;
 }