From: Michal Schmidt Date: Fri, 7 Dec 2012 16:28:30 +0000 (+0100) Subject: shutdown: downgrade a warning X-Git-Tag: v197~137 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=2569a5ce16638d99f1ebaaa7774d183496d8b8e8 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. --- 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)); }