1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

debug: update message in libdm

When dm_tree_find_node_by_uuid() fails to find passed uuid,
report in lof_debug the complete original uuid,
not the one stripped of LVM- prefix.

TODO: inspect manipulation with LVM- prefix here.
This commit is contained in:
Zdenek Kabelac 2016-04-17 14:51:58 +02:00
parent f5cf6cc9ed
commit e2ceb90095
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
Version 1.02.122 - 9th April 2016
=================================
Do not strip LVM- when debug reporting not found uuid.
Change log_debug ioctl flags from single characters into words.
Version 1.02.121 - 26th March 2016

View File

@ -599,7 +599,7 @@ static struct dm_tree_node *_find_dm_tree_node_by_uuid(struct dm_tree *dtree,
return node;
}
log_debug("Not matched uuid %s in deptree.", uuid + default_uuid_prefix_len);
log_debug("Not matched uuid %s in deptree.", uuid);
return NULL;
}