summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2015-12-11 15:28:46 -0600
committerDavid Teigland <teigland@redhat.com>2015-12-11 15:28:46 -0600
commit4aa9e99a1095bcbed503b0adfe20566adf89f3a8 (patch)
tree91c40b730760f24fea7cb9c5b62a2a907713852d
parent3e48354f2d458e80cab4c096b2869bdc1ad463c3 (diff)
downloadlvm2-4aa9e99a1095bcbed503b0adfe20566adf89f3a8.tar.gz
Change messages from verbose to debug
These messages about outdated PVs should not be verbose because they always appear, even when there are no outdated PVs.
-rw-r--r--lib/metadata/metadata.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/metadata/metadata.c b/lib/metadata/metadata.c
index ec645ae14..52647c38d 100644
--- a/lib/metadata/metadata.c
+++ b/lib/metadata/metadata.c
@@ -3478,7 +3478,7 @@ static int _wipe_outdated_pvs(struct cmd_context *cmd, struct volume_group *vg,
* the VG while it's only partially written out.
*/
if (cmd->system_id && strcmp(vg->system_id, cmd->system_id)) {
- log_verbose("Skip wiping outdated PVs for foreign VG.");
+ log_debug_metadata("Skip wiping outdated PVs for foreign VG.");
return 0;
}
@@ -3489,7 +3489,7 @@ static int _wipe_outdated_pvs(struct cmd_context *cmd, struct volume_group *vg,
* host, same as the foreign VG case.
*/
if (is_lockd_type(vg->lock_type)) {
- log_verbose("Skip wiping outdated PVs for shared VG.");
+ log_debug_metadata("Skip wiping outdated PVs for shared VG.");
return 0;
}