14 lines
308 B
Go
14 lines
308 B
Go
|
|
package htmlpage
|
||
|
|
|
||
|
|
import (
|
||
|
|
"net/http"
|
||
|
|
|
||
|
|
"github.com/rs/zerolog/log"
|
||
|
|
)
|
||
|
|
|
||
|
|
// Respond with an error that is visible to the user
|
||
|
|
func respondError(w http.ResponseWriter, m string, e error, s int) {
|
||
|
|
log.Warn().Int("status", s).Err(e).Str("user message", m).Msg("Responding with an error")
|
||
|
|
http.Error(w, m, s)
|
||
|
|
}
|