fix: disable DisableHTMLEscape on logrus json logging
Fixes #3363 Without this, we emit illegal json logs, the user-agent ends up as: ``` "http.request.useragent": "docker/19.03.4 go/go1.12.10 git-commit/9013bf583a kernel/5.10.10-051010-generic os/linux arch/amd64 UpstreamClient(Docker-Client/19.03.4 \(linux\))" ``` which is not valid according to [spec](https://www.json.org/json-en.html) specifically, string: "<any codepoint except " or \ or control>*" Signed-off-by: Don Bowman <don@agilicus.com>
This commit is contained in:
parent
22c074842e
commit
9c43ba9dcc
1 changed files with 2 additions and 1 deletions
|
@ -278,6 +278,7 @@ func configureLogging(ctx context.Context, config *configuration.Configuration)
|
|||
case "json":
|
||||
log.SetFormatter(&log.JSONFormatter{
|
||||
TimestampFormat: time.RFC3339Nano,
|
||||
DisableHTMLEscape: true,
|
||||
})
|
||||
case "text":
|
||||
log.SetFormatter(&log.TextFormatter{
|
||||
|
|
Loading…
Reference in a new issue