32 lines
592 B
Go
32 lines
592 B
Go
//go:build !loghttp
|
|
|
|
package middleware
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-s3-gw/internal/logs"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
type LogHTTPConfig struct {
|
|
Enabled bool
|
|
MaxBody int64
|
|
MaxLogSize int
|
|
OutputPath string
|
|
UseGzip bool
|
|
LogResponse bool
|
|
}
|
|
|
|
func LogHTTP(l *zap.Logger, _ *LogHTTPConfig) Func {
|
|
l.Warn(logs.LogHTTPDisabledInThisBuild)
|
|
return func(h http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
h.ServeHTTP(w, r)
|
|
})
|
|
}
|
|
}
|
|
|
|
func ReloadFileLogger(_ *LogHTTPConfig) error {
|
|
return nil
|
|
}
|