Browse Source

Fix log file new line

Volodymyr Tkach 2 years ago
parent
commit
29d0a44ce7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/http/logger/logger.go

+ 1 - 1
utils/http/logger/logger.go

@@ -22,7 +22,7 @@ func appendToLogFile(fileName, msg string) error {
 		return err
 	}
 	defer f.Close()
-	if _, err := fmt.Fprintln(f, msg); err != nil {
+	if _, err := fmt.Fprint(f, msg); err != nil {
 		return err
 	}
 	return nil