template_utils.rs: Add error message when a template can't be found

pull/8/head
Tristan Daniël Maat 2022-09-16 17:42:41 +01:00
parent 20a6291ac9
commit f0f799a693
Signed by: tlater
GPG Key ID: 49670FD774E43268
1 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,4 @@
use log::error;
use serde::Serialize;
use crate::errors::UserError;
@ -12,6 +13,7 @@ pub fn render_template(
.render(name, args)
.map_err(|_| UserError::InternalError)?)
} else {
error!("template not found: {}", name);
Err(UserError::NotFound)?
}
}