aboutsummaryrefslogtreecommitdiff
path: root/src/templates.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates.rs')
-rw-r--r--src/templates.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/templates.rs b/src/templates.rs
index c537ac7..1f86717 100644
--- a/src/templates.rs
+++ b/src/templates.rs
@@ -20,7 +20,7 @@ pub fn get() -> Tera {
let mut tera = match Tera::new("templates/**/*") {
Ok(t) => t,
Err(e) => {
- error!("Parsing error(s): {}", e);
+ log::error!("Parsing error(s): {}", e);
::std::process::exit(1);
}
};