summaryrefslogtreecommitdiff
path: root/src/core/shutdown.c
diff options
context:
space:
mode:
authorMichal Schmidt <mschmidt@redhat.com>2012-12-07 17:28:30 +0100
committerMichal Schmidt <mschmidt@redhat.com>2012-12-07 17:28:30 +0100
commit2569a5ce16638d99f1ebaaa7774d183496d8b8e8 (patch)
tree4e02d5d0d87cac3a218b6d64e740ace10add0bdf /src/core/shutdown.c
parent20155530437b6b564e60b6b8cf1a69f1bad78c37 (diff)
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.
Diffstat (limited to 'src/core/shutdown.c')
-rw-r--r--src/core/shutdown.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/shutdown.c b/src/core/shutdown.c
index 4bb4b4d13..192746a95 100644
--- a/src/core/shutdown.c
+++ b/src/core/shutdown.c
@@ -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));
}