error => warn on templ rendering err.

This commit is contained in:
fiatjaf
2024-07-29 18:51:55 -03:00
parent 254a20aa90
commit 289d097078
5 changed files with 5 additions and 5 deletions

View File

@@ -65,7 +65,7 @@ func renderEmbedded(w http.ResponseWriter, r *http.Request, code string) {
}
if err := component.Render(r.Context(), w); err != nil {
log.Error().Err(err).Msg("error rendering tmpl")
log.Warn().Err(err).Msg("error rendering tmpl")
}
return
}