summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/libalpm/trans.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/libalpm/trans.c b/lib/libalpm/trans.c
index 68f6633d..4a176086 100644
--- a/lib/libalpm/trans.c
+++ b/lib/libalpm/trans.c
@@ -177,18 +177,28 @@ int SYMEXPORT alpm_trans_commit(alpm_handle_t *handle, alpm_list_t **data)
trans->state = STATE_COMMITING;
+ alpm_logaction(handle, ALPM_CALLER_PREFIX, "transaction started\n");
+
if(trans->add == NULL) {
if(_alpm_remove_packages(handle, 1) == -1) {
/* pm_errno is set by _alpm_remove_packages() */
+ alpm_logaction(handle, ALPM_CALLER_PREFIX, "transaction failed\n");
return -1;
}
} else {
if(_alpm_sync_commit(handle, data) == -1) {
/* pm_errno is set by _alpm_sync_commit() */
+ alpm_logaction(handle, ALPM_CALLER_PREFIX, "transaction failed\n");
return -1;
}
}
+ if(trans->state == STATE_INTERRUPTED) {
+ alpm_logaction(handle, ALPM_CALLER_PREFIX, "transaction interrupted\n");
+ } else {
+ alpm_logaction(handle, ALPM_CALLER_PREFIX, "transaction completed\n");
+ }
+
trans->state = STATE_COMMITED;
return 0;