summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-09-21 16:44:29 +0200
committerDan McGee <dan@archlinux.org>2011-09-21 20:02:35 +0200
commit3a460a8be650437326507b5604243d8fccbcfe26 (patch)
treec580c7b69b0c2a82cc554dd6d8994e026aed43cb
parent47dd31560906fdd87f547940f5c7656d94d52b1b (diff)
downloadpacman-3a460a8be650437326507b5604243d8fccbcfe26.tar.gz
pacman-3a460a8be650437326507b5604243d8fccbcfe26.tar.xz
Remove noisy debug logger
This one can be overwhelming when reading debug output from a very large package. We already have the output of each extracted file so we probably can do without this in 99.9% of cases. Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--lib/libalpm/add.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/libalpm/add.c b/lib/libalpm/add.c
index eb05f841..170d09e5 100644
--- a/lib/libalpm/add.c
+++ b/lib/libalpm/add.c
@@ -584,9 +584,6 @@ static int commit_single_pkg(alpm_handle_t *handle, alpm_pkg_t *newpkg,
* (missing metadata sizes) */
int64_t pos = archive_position_compressed(archive);
percent = (pos * 100) / newpkg->size;
- _alpm_log(handle, ALPM_LOG_DEBUG, "decompression progress: "
- "%d%% (%"PRId64" / %jd)\n",
- percent, pos, (intmax_t)newpkg->size);
if(percent >= 100) {
percent = 100;
}