internal: disable HTML encoding in logrus

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2022-04-04 22:57:55 +02:00
parent 0c2e9234bf
commit 82a999f95d
4 changed files with 4 additions and 1 deletions

View File

@ -27,6 +27,7 @@ func main() {
log.FieldKeyMsg: "event",
log.FieldKeyTime: "timestamp",
},
DisableHTMLEscape: true,
})
go debug.EnableDebugServer()
akURL, found := os.LookupEnv("AUTHENTIK_HOST")