From 5c2b39a4f8d3edd100748d226a77acb4649d79ec Mon Sep 17 00:00:00 2001 From: David Bariod Date: Sun, 3 Mar 2019 11:52:04 +0100 Subject: [PATCH] Remove debug trace --- json_formatter.go | 1 - 1 file changed, 1 deletion(-) diff --git a/json_formatter.go b/json_formatter.go index c494d07..ae95040 100644 --- a/json_formatter.go +++ b/json_formatter.go @@ -93,7 +93,6 @@ func (f *JSONFormatter) Format(entry *Entry) ([]byte, error) { fileVal := fmt.Sprintf("%s:%d", entry.Caller.File, entry.Caller.Line) if f.CallerPrettyfier != nil { funcVal, fileVal = f.CallerPrettyfier(entry.Caller) - fmt.Println(funcVal, fileVal) } if funcVal != "" { data[f.FieldMap.resolve(FieldKeyFunc)] = funcVal