summaryrefslogtreecommitdiffstats
path: root/lib/libalpm
diff options
context:
space:
mode:
authorAurelien Foret <aurelien@archlinux.org>2006-01-27 20:21:00 +0100
committerAurelien Foret <aurelien@archlinux.org>2006-01-27 20:21:00 +0100
commitcb969451809b135d1363ba3964530bfb65f028fb (patch)
tree52220dc25920f8c65659dd8022006a439e6036b2 /lib/libalpm
parentc3ffe4367a1e23ec25a15f21e82b0a256685818c (diff)
downloadpacman-cb969451809b135d1363ba3964530bfb65f028fb.tar.gz
pacman-cb969451809b135d1363ba3964530bfb65f028fb.tar.xz
improved log messages for add_commit
Diffstat (limited to 'lib/libalpm')
-rw-r--r--lib/libalpm/add.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/lib/libalpm/add.c b/lib/libalpm/add.c
index 565fa253..e6af43a9 100644
--- a/lib/libalpm/add.c
+++ b/lib/libalpm/add.c
@@ -596,6 +596,7 @@ int add_commit(pmtrans_t *trans, pmdb_t *db)
continue;
}
if(tmppm->data && !strcmp(depend.name, info->name)) {
+ _alpm_log(PM_LOG_DEBUG, "adding '%s' in requiredby field for '%s'", tmpp->name, info->name);
info->requiredby = pm_list_add(info->requiredby, strdup(tmpp->name));
}
}
@@ -607,9 +608,9 @@ int add_commit(pmtrans_t *trans, pmdb_t *db)
info->installdate[strlen(info->installdate)-1] = 0;
_alpm_log(PM_LOG_FLOW1, "updating database");
- _alpm_log(PM_LOG_FLOW2, "adding database entry %s", info->name);
+ _alpm_log(PM_LOG_FLOW2, "adding database entry '%s'", info->name);
if(db_write(db, info, INFRQ_ALL)) {
- _alpm_log(PM_LOG_ERROR, "could not update database entry %s-%s",
+ _alpm_log(PM_LOG_ERROR, "could not update database entry '%s-%s'",
info->name, info->version);
alpm_logaction(NULL, "error updating database for %s-%s!", info->name, info->version);
RET_ERR(PM_ERR_DB_WRITE, -1);
@@ -619,7 +620,9 @@ int add_commit(pmtrans_t *trans, pmdb_t *db)
}
/* update dependency packages' REQUIREDBY fields */
- _alpm_log(PM_LOG_FLOW2, "updating dependency packages 'requiredby' fields");
+ if(info->depends) {
+ _alpm_log(PM_LOG_FLOW2, "updating dependency packages 'requiredby' fields");
+ }
for(lp = info->depends; lp; lp = lp->next) {
pmpkg_t *depinfo;
pmdepend_t depend;
@@ -639,15 +642,15 @@ int add_commit(pmtrans_t *trans, pmdb_t *db)
FREELISTPTR(provides);
}
if(depinfo == NULL) {
- _alpm_log(PM_LOG_ERROR, "could not find dependency %s", depend.name);
+ _alpm_log(PM_LOG_ERROR, "could not find dependency '%s'", depend.name);
/* wtf */
continue;
}
}
+ _alpm_log(PM_LOG_DEBUG, "adding '%s' in requiredby field for '%s'", tmpp->name, info->name);
depinfo->requiredby = pm_list_add(depinfo->requiredby, strdup(info->name));
- _alpm_log(PM_LOG_DEBUG, "updating 'requiredby' field for package %s", depinfo->name);
if(db_write(db, depinfo, INFRQ_DEPENDS)) {
- _alpm_log(PM_LOG_ERROR, "could not update 'requiredby' database entry %s-%s",
+ _alpm_log(PM_LOG_ERROR, "could not update 'requiredby' database entry '%s-%s'",
depinfo->name, depinfo->version);
}
}