Remove println

This commit is contained in:
kitsunecafe 2024-02-19 18:12:50 -05:00
parent 3f1f748f7d
commit 7ebe5d6104

View file

@ -44,7 +44,6 @@ impl<'a> TeraParser<'a> {
fn load_template<P: AsRef<Path>>(&mut self, path: &P, src: &[u8]) -> Result<(), tera::Error> {
let path = path.as_ref().canonicalize()?;
println!("loading {path:?}");
let str = String::from_utf8_lossy(src).to_string();
for (_, [_, layout_path]) in EXPANSION_RE
.captures_iter(&str.as_str())