diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2012-12-07 17:28:30 +0100 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2012-12-07 17:28:30 +0100 |
commit | 2569a5ce16638d99f1ebaaa7774d183496d8b8e8 (patch) | |
tree | 4e02d5d0d87cac3a218b6d64e740ace10add0bdf /src/core/shutdown.c | |
parent | 20155530437b6b564e60b6b8cf1a69f1bad78c37 (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/shutdown.c b/src/core/shutdown.c index 4bb4b4d13e..192746a953 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)); } |