From 6dfa3ef6af59fbe2663d05832290aa2e4e158a82 Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Sun, 17 Apr 2005 10:01:47 +0000 Subject: improved logs for package removal --- lib/libalpm/remove.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/libalpm/remove.c') diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c index 83786275..83a745b1 100644 --- a/lib/libalpm/remove.c +++ b/lib/libalpm/remove.c @@ -165,9 +165,11 @@ int remove_commit(pmtrans_t *trans, pmdb_t *db) continue; } if(S_ISDIR(buf.st_mode)) { - _alpm_log(PM_LOG_FLOW2, "removing directory %s", file); if(rmdir(line)) { /* this is okay, other packages are probably using it. */ + _alpm_log(PM_LOG_DEBUG, "keeping directory %s", file); + } else { + _alpm_log(PM_LOG_FLOW2, "removing directory %s", file); } } else { /* if the file is flagged, back it up to .pacsave */ -- cgit v1.2.3-24-g4f1b