about summary refs log tree commit diff stats
path: root/internal/server/logging.go
diff options
context:
space:
mode:
authorAlan Pearce2025-01-20 10:24:23 +0100
committerAlan Pearce2025-01-20 10:24:23 +0100
commit584d295c25697c19ffd369d22281f7d53a139f18 (patch)
treebb9ba3f2bd925fad9310cde33ed37faa07dacd61 /internal/server/logging.go
parent19d8046f99d9f395f8529886f37292d99dc1a4d9 (diff)
downloadsearchix-584d295c25697c19ffd369d22281f7d53a139f18.tar.lz
searchix-584d295c25697c19ffd369d22281f7d53a139f18.tar.zst
searchix-584d295c25697c19ffd369d22281f7d53a139f18.zip
feat: allow HTTP request logging to be disabled
Diffstat (limited to 'internal/server/logging.go')
-rw-r--r--internal/server/logging.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/server/logging.go b/internal/server/logging.go
index 6e2f7c8..5930b9d 100644
--- a/internal/server/logging.go
+++ b/internal/server/logging.go
@@ -42,9 +42,14 @@ func NewLoggingResponseWriter(w http.ResponseWriter) *LoggingResponseWriter {
 type wrappedHandlerOptions struct {
 	defaultHostname string
 	logger          *log.Logger
+	enabled         bool
 }
 
 func wrapHandlerWithLogging(wrappedHandler http.Handler, opts wrappedHandlerOptions) http.Handler {
+	if !opts.enabled {
+		return wrappedHandler
+	}
+
 	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
 		scheme := r.Header.Get("X-Forwarded-Proto")
 		if scheme == "" {