summaryrefslogtreecommitdiff
path: root/udev_remove.c
diff options
context:
space:
mode:
authorMarco d'Itri <md@Linux.IT>2005-11-07 18:52:03 +0100
committerKay Sievers <kay.sievers@suse.de>2005-11-07 18:52:03 +0100
commitdf4e89bfa61b6aaea41619842aa9032dd1af072e (patch)
tree73350d1017e1c531d6b19c60838d9d8082d3c282 /udev_remove.c
parentff3e4bed21aaff673284f2e024da26c1e39cfda6 (diff)
move some logging from dbg() to info()
Diffstat (limited to 'udev_remove.c')
-rw-r--r--udev_remove.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/udev_remove.c b/udev_remove.c
index 621fcc1960..cb5523af92 100644
--- a/udev_remove.c
+++ b/udev_remove.c
@@ -56,7 +56,7 @@ static int delete_path(const char *path)
if (retval) {
if (errno == ENOTEMPTY)
return 0;
- dbg("rmdir(%s) failed: %s", path, strerror(errno));
+ err("rmdir(%s) failed: %s", path, strerror(errno));
break;
}
dbg("removed '%s'", path);