Skip to content

Commit

Permalink
fix spurious warning
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Brue <[email protected]>
  • Loading branch information
ryanabx committed Aug 30, 2024
1 parent 3c78f94 commit fcbbd7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pub fn get_template_if_exists(
let mut current = PathBuf::from(djot_document_path.parent().unwrap());
loop {
let template_file = current.join("template.html");
log::warn!("Checking for template file at {:?}", &template_file);
log::trace!("Checking for template file at {:?}", &template_file);
if template_file.exists() {
return Ok(Some(read_to_string(&template_file)?));
}
Expand Down

0 comments on commit fcbbd7e

Please sign in to comment.