xP: use the correct log function

This commit is contained in:
Přemysl Eric Janouch 2023-01-24 07:59:44 +01:00
parent 26ed2dbc77
commit c58b772905
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 1 deletions

View File

@ -304,5 +304,5 @@ func main() {
WriteTimeout: 60 * time.Second,
MaxHeaderBytes: 32 << 10,
}
log.Fatal(s.ListenAndServe())
log.Fatalln(s.ListenAndServe())
}