Skip to content

Commit

Permalink
Fixed error logging (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
lpusok committed Apr 8, 2024
1 parent 4e14f19 commit 497f111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Expand Up @@ -56,7 +56,7 @@ func run() int {
}

if exportErr != nil {
logger.Errorf(errorutil.FormattedError(fmt.Errorf("Failed to export Step outputs: %w", err)))
logger.Errorf(errorutil.FormattedError(fmt.Errorf("Failed to export Step outputs: %w", exportErr)))
return 1
}

Expand Down

0 comments on commit 497f111

Please sign in to comment.