Skip to content

Instantly share code, notes, and snippets.

@nstogner
nstogner / status_logware.go
Last active May 9, 2025 22:46
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)
}