Browse Source

delimter missing

0xdcarns 3 years ago
parent
commit
5712ce3871
1 changed files with 1 additions and 1 deletions
  1. 1 1
      logger/logger.go

+ 1 - 1
logger/logger.go

@@ -67,7 +67,7 @@ func Dump() string {
 func DumpFile(filePath string) {
 func DumpFile(filePath string) {
 	f, err := os.OpenFile(filePath, os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0600)
 	f, err := os.OpenFile(filePath, os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0600)
 	if err != nil {
 	if err != nil {
-		fmt.Println(MakeString("could not open log file", filePath))
+		fmt.Println(MakeString(" ", "could not open log file", filePath))
 		return
 		return
 	}
 	}