From 03121daf9bc9e0dfb79abf36c1bf5f3f379353bf Mon Sep 17 00:00:00 2001 From: "marko.tikvic" Date: Tue, 23 Apr 2019 10:50:33 +0200 Subject: [PATCH] extra padding on tracing message --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 230e51d..f772657 100644 --- a/main.go +++ b/main.go @@ -129,7 +129,7 @@ func (l *Logger) Trace(format string, v ...interface{}) { stack := CallStack() msg := fmt.Sprintf(format, v...) - s := fmt.Sprintf("%s:\n%s\n%s\n", time.Now().Format(dateTimeFormat), stack, msg) + s := fmt.Sprintf("%s:\n%s\n%s\n\n", time.Now().Format(dateTimeFormat), stack, msg) if l.shouldSplit(len(s)) { l.split() -- 1.8.1.2