Update index.rs

This commit is contained in:
Adrian Woźniak 2023-07-29 20:47:55 +02:00
parent f19bbe39e8
commit 2f6ca86aa3

View File

@ -30,8 +30,8 @@ pub async fn index(session: Session, data: web::Data<ActixAdmin>) -> Result<Http
let body = actix_admin.tera let body = actix_admin.tera
.render("index.html", &ctx) .render("index.html", &ctx)
.map_err(|e| { .map_err(|e| {
#[cfg(enable_tracing)] #[cfg(enable-tracing)]
tracing::warn!("{}", e); tracing::error!("{}", e);
error::ErrorInternalServerError("Template error") error::ErrorInternalServerError("Template error")
})?; })?;
Ok(HttpResponse::Ok().content_type("text/html").body(body)) Ok(HttpResponse::Ok().content_type("text/html").body(body))
@ -41,8 +41,8 @@ pub async fn not_found(data: web::Data<ActixAdmin>) -> Result<HttpResponse, Erro
let body = data.get_ref().tera let body = data.get_ref().tera
.render("not_found.html", &Context::new()) .render("not_found.html", &Context::new())
.map_err(|e| { .map_err(|e| {
#[cfg(enable_tracing)] #[cfg(enable-tracing)]
tracing::warn!("{}", e); tracing::error!("{}", e);
error::ErrorInternalServerError("Template error") error::ErrorInternalServerError("Template error")
})?; })?;
Ok(HttpResponse::NotFound().content_type("text/html").body(body)) Ok(HttpResponse::NotFound().content_type("text/html").body(body))