diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-02-06 00:37:18 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-02-06 00:46:15 -0500 |
commit | 75cb8502dfec0a6a5305fe766d4b6a1a04a43549 (patch) | |
tree | 88b77c9ca51e5a73321b6166904753d354e2ff06 /src/core/transaction.c | |
parent | 3ce09b7da2eb8b888066468663b2b5c81a05a03c (diff) |
transaction: print more information about conflicting jobs
Also remove some debug statement that should not have been committed.
Diffstat (limited to 'src/core/transaction.c')
-rw-r--r-- | src/core/transaction.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/transaction.c b/src/core/transaction.c index 36e31c45c9..d00f4277e1 100644 --- a/src/core/transaction.c +++ b/src/core/transaction.c @@ -223,7 +223,9 @@ static int delete_one_unmergeable_job(Transaction *tr, Job *j) { /* Ok, we can drop one, so let's do so. */ log_debug_unit(d->unit->id, - "Fixing conflicting jobs by deleting job %s/%s", + "Fixing conflicting jobs %s/%s,%s/%s by deleting job %s/%s", + j->unit->id, job_type_to_string(j->type), + k->unit->id, job_type_to_string(k->type), d->unit->id, job_type_to_string(d->type)); transaction_delete_job(tr, d, true); return 0; |