Debuggen eines fehlers
This commit is contained in:
parent
85822fefa2
commit
6a468cd718
10
main.go
10
main.go
@ -76,9 +76,15 @@ func handleFavicon(w http.ResponseWriter, r *http.Request) {
|
||||
}
|
||||
|
||||
func handlePopupInstructions(w http.ResponseWriter, r *http.Request) {
|
||||
tmpl := template.Must(template.ParseFiles("popup.html"))
|
||||
tmpl, err := template.ParseFiles("popup.html")
|
||||
if err != nil {
|
||||
log.Printf("Fehler beim Parsen des Templates: %v", err)
|
||||
http.Error(w, "Interner Serverfehler", http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
if err := tmpl.Execute(w, nil); err != nil {
|
||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||
log.Printf("Fehler beim Ausführen des Templates: %v", err)
|
||||
http.Error(w, "Interner Serverfehler", http.StatusInternalServerError)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user