diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-06-14 00:41:47 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-06-14 00:41:47 +0200 |
commit | 99313edd6f3621b21c38dc2323f19480ea64617f (patch) | |
tree | 2fdfd8f052a39888f448b2d265e3b4b729914b77 /src/http.go | |
parent | 4f14515613bd491dd0627398aa8fc3e3aef07945 (diff) |
Unify usage of logging functions
Diffstat (limited to 'src/http.go')
-rw-r--r-- | src/http.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http.go b/src/http.go index a5897b4..298e6be 100644 --- a/src/http.go +++ b/src/http.go @@ -179,7 +179,7 @@ func throwError(status int, err error, w http.ResponseWriter, r *http.Request) { w.WriteHeader(status) go func() { if err := email.ServerError(err); err != nil { - log.Print(err) + log.Println(err) } }() errorTmpl.Execute(w, struct { |