diff options
author | Matthew Holt <[email protected]> | 2020-05-29 11:49:21 -0600 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2020-05-29 11:49:25 -0600 |
commit | 6c051cd27d3b0c61b103a58dce9f779481fa993b (patch) | |
tree | 3095001af8ae6c4dce13570a2959f1968cca0563 /modules/logging | |
parent | 9415feca7cf0fe14b9d881c7318be2da20b2985f (diff) | |
download | caddy-6c051cd27d3b0c61b103a58dce9f779481fa993b.tar.gz caddy-6c051cd27d3b0c61b103a58dce9f779481fa993b.zip |
caddyconfig: Minor internal and godoc tweaks
Diffstat (limited to 'modules/logging')
-rw-r--r-- | modules/logging/filters.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/logging/filters.go b/modules/logging/filters.go index 52db2fec6..cd3bbb138 100644 --- a/modules/logging/filters.go +++ b/modules/logging/filters.go @@ -27,9 +27,7 @@ func init() { } // LogFieldFilter can filter (or manipulate) -// a field in a log entry. If delete is true, -// out will be ignored and the field will be -// removed from the output. +// a field in a log entry. type LogFieldFilter interface { Filter(zapcore.Field) zapcore.Field } |