diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/caddyhttp/reverseproxy/caddyfile.go | 2 | ||||
-rw-r--r-- | modules/logging/encoders.go | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/modules/caddyhttp/reverseproxy/caddyfile.go b/modules/caddyhttp/reverseproxy/caddyfile.go index 8bbdf5e..c7f555f 100644 --- a/modules/caddyhttp/reverseproxy/caddyfile.go +++ b/modules/caddyhttp/reverseproxy/caddyfile.go @@ -61,7 +61,7 @@ func parseCaddyfile(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error) // lb_try_interval <interval> // // # active health checking -// health_path <path> +// health_uri <uri> // health_port <port> // health_interval <interval> // health_timeout <duration> diff --git a/modules/logging/encoders.go b/modules/logging/encoders.go index 8b2b44c..1b5f4a6 100644 --- a/modules/logging/encoders.go +++ b/modules/logging/encoders.go @@ -135,6 +135,7 @@ func (SingleFieldEncoder) CaddyModule() caddy.ModuleInfo { // Provision sets up the encoder. func (se *SingleFieldEncoder) Provision(ctx caddy.Context) error { + caddy.Log().Named("caddy.logging.encoders.single_field").Warn("the 'single_field' encoder is deprecated and will be removed soon!") if se.FallbackRaw != nil { val, err := ctx.LoadModule(se, "FallbackRaw") if err != nil { |