mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
cleanup: use log_print instead of log_error
Since reduce the message has informational character and doesn't lead to exit of the command - reduce the log level to info print as we use for other similar types. Reindent next print message.
This commit is contained in:
parent
01174b8b8b
commit
2a059f2358
@ -4424,8 +4424,8 @@ static struct logical_volume *_lv_create_an_lv(struct volume_group *vg, struct l
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (lp->stripe_size > vg->extent_size) {
|
if (lp->stripe_size > vg->extent_size) {
|
||||||
log_error("Reducing requested stripe size %s to maximum, "
|
log_print_unless_silent("Reducing requested stripe size %s to maximum, "
|
||||||
"physical extent size %s",
|
"physical extent size %s.",
|
||||||
display_size(cmd, (uint64_t) lp->stripe_size),
|
display_size(cmd, (uint64_t) lp->stripe_size),
|
||||||
display_size(cmd, (uint64_t) vg->extent_size));
|
display_size(cmd, (uint64_t) vg->extent_size));
|
||||||
lp->stripe_size = vg->extent_size;
|
lp->stripe_size = vg->extent_size;
|
||||||
@ -4442,7 +4442,7 @@ static struct logical_volume *_lv_create_an_lv(struct volume_group *vg, struct l
|
|||||||
|
|
||||||
if ((size_rest = lp->extents % lp->stripes)) {
|
if ((size_rest = lp->extents % lp->stripes)) {
|
||||||
log_print_unless_silent("Rounding size (%d extents) up to stripe boundary "
|
log_print_unless_silent("Rounding size (%d extents) up to stripe boundary "
|
||||||
"size (%d extents)", lp->extents,
|
"size (%d extents).", lp->extents,
|
||||||
lp->extents - size_rest + lp->stripes);
|
lp->extents - size_rest + lp->stripes);
|
||||||
lp->extents = lp->extents - size_rest + lp->stripes;
|
lp->extents = lp->extents - size_rest + lp->stripes;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user