From c8739f64b93fe6ef9222f5cdbcd32de6c01cca3f Mon Sep 17 00:00:00 2001 From: Billy McFall <22157057+Billy99@users.noreply.github.com> Date: Thu, 22 Oct 2020 17:38:13 -0400 Subject: [PATCH] Run 'go fmt' on code base. Signed-off-by: Billy McFall <22157057+Billy99@users.noreply.github.com> --- logging/logging.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/logging/logging.go b/logging/logging.go index 5f2d3361c..fa5b21ad4 100644 --- a/logging/logging.go +++ b/logging/logging.go @@ -16,10 +16,10 @@ package logging import ( "fmt" + "io" "os" "strings" "time" - "io" "github.com/pkg/errors" lumberjack "gopkg.in/natefinch/lumberjack.v2" @@ -142,12 +142,12 @@ func SetLogFile(filename string) { } loggingW = &lumberjack.Logger{ - Filename: filename, - MaxSize: 100, // megabytes - MaxBackups: 5, - MaxAge: 5, // days - Compress: true, - } + Filename: filename, + MaxSize: 100, // megabytes + MaxBackups: 5, + MaxAge: 5, // days + Compress: true, + } }