ReplaceFilter is a Caddy log field filter that replaces the field with the indicated string.
| 116 | // ReplaceFilter is a Caddy log field filter that |
| 117 | // replaces the field with the indicated string. |
| 118 | type ReplaceFilter struct { |
| 119 | Value string `json:"value,omitempty"` |
| 120 | } |
| 121 | |
| 122 | // CaddyModule returns the Caddy module information. |
| 123 | func (ReplaceFilter) CaddyModule() caddy.ModuleInfo { |
nothing calls this directly
no outgoing calls
no test coverage detected