diff --git a/cgcs-patch/cgcs-patch/cgcs_patch/patch_agent.py b/cgcs-patch/cgcs-patch/cgcs_patch/patch_agent.py index e4cceb8c..eb128419 100644 --- a/cgcs-patch/cgcs-patch/cgcs_patch/patch_agent.py +++ b/cgcs-patch/cgcs-patch/cgcs_patch/patch_agent.py @@ -628,9 +628,11 @@ class PatchAgent(PatchService): try: transaction_rc = self.resolve_dnf_transaction() except dnf.exceptions.DepsolveError: - LOG.error("Failures resolving dependencies in transaction") + LOG.exception("Failures resolving dependencies in transaction") except dnf.exceptions.DownloadError: - LOG.error("Failures downloading in transaction") + LOG.exception("Failures downloading in transaction") + except dnf.exceptions.Error: + LOG.exception("Failure resolving transaction") if not transaction_rc: LOG.error("Failures occurred during transaction")