From 0415a104366b93418fcedb076a962c632d9dd2ab Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 20 May 2011 16:26:00 +0200 Subject: [PATCH] umount: log_info about what we unmounted --- src/umount.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/umount.c b/src/umount.c index 95efa8204..290e6cad0 100644 --- a/src/umount.c +++ b/src/umount.c @@ -417,6 +417,7 @@ static int mount_points_list_umount(MountPoint **head, bool *changed) { /* Trying to umount. Forcing to umount if busy (only for NFS mounts) */ if (umount2(m->path, MNT_FORCE) == 0) { + log_info("Unmounted %s.", m->path); if (changed) *changed = true; -- 2.30.2