Skip to content

Commit

Permalink
fix debug log message
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyamalpani committed Dec 18, 2024
1 parent 706ebf2 commit 332b9a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/serverless/daemon/routes.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func (e *EndInvocation) ServeHTTP(w http.ResponseWriter, r *http.Request) {
}
errorStack := r.Header.Get(invocationlifecycle.InvocationErrorStackHeader)
if decodedStack, err := base64.StdEncoding.DecodeString(errorStack); err != nil {
log.Debug("Error stack header may not be encoded, setting as is")
log.Debug("Could not decode error stack header")
} else {
errorStack = string(decodedStack)
}
Expand Down

0 comments on commit 332b9a1

Please sign in to comment.