From c237b4d4dee9c1918f4d85de7c0cfc2780a1e793 Mon Sep 17 00:00:00 2001 From: 0xdcarns Date: Fri, 11 Feb 2022 11:11:28 -0500 Subject: [PATCH] delimter missing --- logger/logger.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logger/logger.go b/logger/logger.go index 2605b75b..ce84af13 100644 --- a/logger/logger.go +++ b/logger/logger.go @@ -67,7 +67,7 @@ func Dump() string { func DumpFile(filePath string) { f, err := os.OpenFile(filePath, os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0600) if err != nil { - fmt.Println(MakeString("could not open log file", filePath)) + fmt.Println(MakeString(" ", "could not open log file", filePath)) return }