Tidy up the logger output

This commit is contained in:
HikariKnight 2023-10-27 08:58:17 +02:00
parent f219f686f6
commit 47340a3c2e
3 changed files with 3 additions and 3 deletions

View file

@ -7,6 +7,6 @@ import (
// Formats our log output to \n%s\n\n for readability
func Printf(content string, v ...any) {
content = fmt.Sprintf("\n%s\n\n", content)
content = fmt.Sprintf("\n%s\n", content)
log.Printf(content, v...)
}