Add structured logging for HTTP server errors

This commit is contained in:
Zoltán Papp
2026-02-13 12:42:00 +01:00
parent 3508144575
commit 97a561c56b
2 changed files with 28 additions and 4 deletions

21
proxy/log.go Normal file
View File

@@ -0,0 +1,21 @@
package proxy
import (
stdlog "log"
log "github.com/sirupsen/logrus"
)
const (
// HTTP server type identifiers for logging
logtagFieldHTTPServer = "http-server"
logtagValueHTTPS = "https"
logtagValueACME = "acme"
logtagValueDebug = "debug"
)
// newHTTPServerLogger creates a standard library logger that writes to logrus
// with the specified server type field.
func newHTTPServerLogger(logger *log.Logger, serverType string) *stdlog.Logger {
return stdlog.New(logger.WithField(logtagFieldHTTPServer, serverType).WriterLevel(log.WarnLevel), "", 0)
}