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/fileserver | |
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/fileserver')
-rw-r--r-- | modules/caddyhttp/fileserver/command.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/caddyhttp/fileserver/command.go b/modules/caddyhttp/fileserver/command.go index 697ec34..0112a5f 100644 --- a/modules/caddyhttp/fileserver/command.go +++ b/modules/caddyhttp/fileserver/command.go @@ -134,7 +134,9 @@ func cmdFileServer(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()}, + }, }, } } |