shutdown: downgrade a warning

All messages of the kind "not all done, %d left" are log_info, except
the one for DM devices. Make it info too.
This commit is contained in:
Michal Schmidt 2012-12-07 17:28:30 +01:00
parent 2015553043
commit 2569a5ce16
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ int main(int argc, char *argv[]) {
if (r == 0)
need_dm_detach = false;
else if (r > 0)
log_warning("Not all DM devices detached, %d left.", r);
log_info("Not all DM devices detached, %d left.", r);
else
log_error("Failed to detach DM devices: %s", strerror(-r));
}