Skip to content

Commit

Permalink
remove unneeded value in log message (#2282)
Browse files Browse the repository at this point in the history
Signed-off-by: Bob Callaway <bcallaway@google.com>
  • Loading branch information
bobcallaway authored Nov 21, 2024
1 parent 56ea4b5 commit 92584b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/api/entries.go
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ func GetLogEntryByUUIDHandler(params entries.GetLogEntryByUUIDParams) middleware
}
var validationErr *types.InputValidationError
if errors.As(err, &validationErr) {
return handleRekorAPIError(params, http.StatusBadRequest, err, fmt.Sprintf("validation error: %v", err), params.EntryUUID)
return handleRekorAPIError(params, http.StatusBadRequest, err, fmt.Sprintf("validation error: %v", err))
}
return handleRekorAPIError(params, http.StatusInternalServerError, err, trillianCommunicationError)
}
Expand Down

0 comments on commit 92584b7

Please sign in to comment.