diff options
author | Mohammed Al Sahaf <msaa1990@gmail.com> | 2023-03-28 00:41:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-27 21:41:24 +0000 |
commit | 1aef807c71b1ea8e70e664765e0010734aee468c (patch) | |
tree | ff7d81c464a33ee4e20d74740634fdd981d45e57 /modules/caddyhttp/reverseproxy | |
parent | e16a886814d8cd43d545de38a4d6b98313fb31cb (diff) |
log: Make sink logs encodable (#5441)
* log: make `sink` encodable
* deduplicate logger fields
* extract common fields into `BaseLog` and embed it into `SinkLog`
* amend godoc on `BaseLog` and `SinkLog`
* minor style change
---------
Co-authored-by: Francis Lavoie <lavofr@gmail.com>
Diffstat (limited to 'modules/caddyhttp/reverseproxy')
-rw-r--r-- | modules/caddyhttp/reverseproxy/command.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/caddyhttp/reverseproxy/command.go b/modules/caddyhttp/reverseproxy/command.go index 5e8beb1..bd3efcd 100644 --- a/modules/caddyhttp/reverseproxy/command.go +++ b/modules/caddyhttp/reverseproxy/command.go @@ -280,7 +280,7 @@ func cmdReverseProxy(fs caddycmd.Flags) (int, error) { if debug { cfg.Logging = &caddy.Logging{ Logs: map[string]*caddy.CustomLog{ - "default": {Level: zap.DebugLevel.CapitalString()}, + "default": {BaseLog: caddy.BaseLog{Level: zap.DebugLevel.CapitalString()}}, }, } } |