Skip to content

Commit

Permalink
Add missing access log entry
Browse files Browse the repository at this point in the history
Add missing access log entry for successfull HTTP Get
of AC with enabled validation.
  • Loading branch information
ulrfa authored and mostynb committed Apr 1, 2022
1 parent 4323662 commit 8328d83
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,8 @@ func (h *httpCache) handleGetValidAC(w http.ResponseWriter, r *http.Request, has
h.logResponse(http.StatusInternalServerError, r)
return
}

h.logResponse(http.StatusOK, r)
}

// Helper function for logging responses
Expand Down

0 comments on commit 8328d83

Please sign in to comment.