summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/be_package.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-01-12 03:16:54 +0100
committerDan McGee <dan@archlinux.org>2011-01-12 04:15:04 +0100
commit9a82cb92a446bce05186460bc5b5b12c4df7e5a1 (patch)
tree3c795e132c429bc15f7ac5504bcaf708e7b09371 /lib/libalpm/be_package.c
parenta9cbd15260b396c38b7d5ffe5669994e65f9a86f (diff)
downloadpacman-9a82cb92a446bce05186460bc5b5b12c4df7e5a1.tar.gz
pacman-9a82cb92a446bce05186460bc5b5b12c4df7e5a1.tar.xz
Small fix to download size lookup and a logger
These were just two small things I came across today and found could be fixed or helpful, so I've added them and I'm not sure what else to bundle them with. commit_count++ Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/be_package.c')
-rw-r--r--lib/libalpm/be_package.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libalpm/be_package.c b/lib/libalpm/be_package.c
index 42f33599..b69161b4 100644
--- a/lib/libalpm/be_package.c
+++ b/lib/libalpm/be_package.c
@@ -279,6 +279,8 @@ static pmpkg_t *pkg_load(const char *pkgfile, int full)
newpkg->filename = strdup(pkgfile);
newpkg->size = st.st_size;
+ _alpm_log(PM_LOG_DEBUG, "starting package load for %s\n", pkgfile);
+
/* If full is false, only read through the archive until we find our needed
* metadata. If it is true, read through the entire archive, which serves
* as a verfication of integrity and allows us to create the filelist. */