I have the following code in Rust using tera template language:
let mut context = Context::new();
context.insert("adminform", &admin_form);
let html = match tera.render("change_form.html", &context) {
Ok(html) => html,
Err(err) => return HttpResponse::InternalServerError().body(format!("Failed to render the template: {}", err))
};
The rendering fails, but the only information I receive is:
Failed to render the template: Failed to render 'change_form.html'
How can I get a more detailed error? I need to get the line number and exact failure to debug and fix.
It seems the error contains more information in its
source
, making this a chained error.By default,
println!("{}")
only prints the last error of the chain. Printing with{:?}
(debug-printing) would reveal more information.There are frameworks that can visually display the entire chain, like
miette
. Be aware that you need to enable thefancy
feature ofmiette
for this to work.So in your case, I might guess that something like the following might work. I can't be sure, though, because your example isn't reproducible for me to test it. So be aware that the following code is untested.