Skip to content

Commit

Permalink
Also include configuration hash
Browse files Browse the repository at this point in the history
  • Loading branch information
fmeum committed Aug 15, 2023
1 parent f9f4cbe commit 19b169e
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,12 @@ public void acceptTransitionError(OptionsParsingException e) {

private String getMessageWithEdgeTransitionInfo(Throwable e) {
return String.format(
"On dependency edge %s -|%s|-> %s: %s",
parameters.target().getLabel(), kind.getAttribute().getName(), toLabel, e.getMessage());
"On dependency edge %s (%s) -|%s|-> %s: %s",
parameters.target().getLabel(),
parameters.configurationKey().getOptions().shortId(),
kind.getAttribute().getName(),
toLabel,
e.getMessage());
}

private StateMachine processTransitionResult(Tasks tasks) {
Expand Down

0 comments on commit 19b169e

Please sign in to comment.