Skip to content

Commit

Permalink
fix: remove leftover printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Nov 1, 2024
1 parent 5ff0a4e commit 42a1316
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/core/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,13 @@ impl Node {
}
// TODO enable object store
tracing::debug!("resolving child: {}", link.href);
println!("resolving: {}", link.href);
let child: Container = crate::read::<Value>(link.href)?.try_into()?;
self.children.push_back(child.into());
} else if link.is_item() {
if let Some(href) = &href {
link.make_absolute(href)?;
}
tracing::debug!("resolving item: {}", link.href);
println!("resolving: {}", link.href);
let item = crate::read::<Item>(link.href)?;
self.items.push_back(item);
} else {
Expand Down

0 comments on commit 42a1316

Please sign in to comment.