Skip to content

Commit

Permalink
chore: more verbose logging to uncover more info for Issue 9434 (#9483)
Browse files Browse the repository at this point in the history
Signed-off-by: Julie Vogelman <[email protected]>

Signed-off-by: Julie Vogelman <[email protected]>
  • Loading branch information
juliev0 authored Aug 31, 2022
1 parent b941fbc commit 1696fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/artifacts/artifact_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ func (a *ArtifactServer) getArtifactAndDriver(ctx context.Context, nodeId, artif
art = wf.Status.Nodes[nodeId].Outputs.GetArtifactByName(artifactName)
}
if art == nil {
return nil, nil, fmt.Errorf("artifact not found: %s", artifactName)
return nil, nil, fmt.Errorf("artifact not found: %s, isInput=%t, Workflow Status=%+v", artifactName, isInput, wf.Status)
}

// Artifact Location can be defined in various places:
Expand Down

0 comments on commit 1696fb2

Please sign in to comment.