Skip to content

Instantly share code, notes, and snippets.

@nstogner
nstogner / status_logware.go
Last active June 14, 2024 10:00
Go: HTTP Status Logging Middleware
type statusRecorder struct {
http.ResponseWriter
status int
}
func (rec *statusRecorder) WriteHeader(code int) {
rec.status = code
rec.ResponseWriter.WriteHeader(code)
}