Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
fix: log error on quick run task failure
Browse files Browse the repository at this point in the history
  • Loading branch information
itsaky committed Nov 11, 2023
1 parent 5373698 commit 8c18e57
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,10 @@ class QuickRunWithCancellationAction(context: Context, override val order: Int)
}

handleResult(data, result, module, variant)
}.invokeOnCompletion { error ->
if (error != null) {
log.error("Failed to run '$taskName'", error)
}
}
}

Expand Down

0 comments on commit 8c18e57

Please sign in to comment.