Skip to content

Commit

Permalink
correct print string
Browse files Browse the repository at this point in the history
Signed-off-by: Ramon Petgrave <[email protected]>
  • Loading branch information
ramonpetgrave64 committed Oct 8, 2024
1 parent 78b455f commit b23bcf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion signing/sigstore/bundle.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func (s *BundleSigner) Sign(ctx context.Context, statement *intoto.Statement) (s
// print the logIndex.
// Bundle will have already verified that the TLog entries are signed.
logIndex := innerBundle.GetVerificationMaterial().GetTlogEntries()[0].GetLogIndex()
fmt.Printf("Signed attestation is in rekor with UUID %d.\n", logIndex)
fmt.Printf("Signed attestation is in rekor with Log Index %d.\n", logIndex)
fmt.Printf("You could use rekor-cli to view the log entry details:\n\n"+
" $ rekor-cli get --log-index %[1]d\n\n"+
"In addition to that, you could also use the Rekor Search UI:\n\n"+
Expand Down

0 comments on commit b23bcf2

Please sign in to comment.