remove some debugs
Some checks failed
/ clippy (push) Failing after 1m49s
/ test (push) Failing after 1m58s

This commit is contained in:
Chris Cochrun 2026-03-31 15:09:19 -05:00
parent 42842b8bbe
commit a2110b6741

View file

@ -84,7 +84,6 @@ pub fn build_site(
let file_name = path.file_name().unwrap_or_default().to_string_lossy();
if path.is_file() && !path.ends_with("~") && !file_name.starts_with(".#") {
let mut handler = OrgHtmlExporter::new(Arc::clone(&files));
// debug!(?path);
if path
.extension()
.iter()
@ -92,7 +91,6 @@ pub fn build_site(
.collect::<String>()
== "org"
{
// debug!("It ends with org");
let org_string = fs::read_to_string(path).unwrap_or_default();
let org = orgize::Org::parse(&org_string);
let mut keywords = org.keywords();