From 31ebd1bdef059442b548ee6a5353887193659559 Mon Sep 17 00:00:00 2001 From: "marko.tikvic" Date: Mon, 2 Dec 2019 10:29:24 +0100 Subject: [PATCH] replaces log separator '=' with '#' --- http_logs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http_logs.go b/http_logs.go index dac0814..dad4fce 100644 --- a/http_logs.go +++ b/http_logs.go @@ -40,7 +40,7 @@ func (l *Logger) LogHTTPRequest(req *http.Request, userID string) string { return b.String() } -const splitLine = "==============================================================" +const splitLine = "##############################################################" // LogHTTPResponse ... func (l *Logger) LogHTTPResponse(status int, duration time.Duration, size int) string { -- 1.8.1.2