Footer in eigenes Template verschoben und Logging verbessert

This commit is contained in:
Gonne 2022-09-19 17:00:19 +02:00
parent c38286bcc5
commit 4f5dc053a0
14 changed files with 40 additions and 44 deletions

View file

@ -1,3 +1,4 @@
// main
package main
import (
@ -51,5 +52,5 @@ func main() {
http.HandleFunc("/", h.RootHandler)
err = http.ListenAndServe(fmt.Sprintf("%s:%d", conf.Server.ListenAddress, conf.Server.ListenPort), nil)
fmt.Println(err.Error())
log.Println(err.Error())
}