chore: move print macros to span for logging later

This commit is contained in:
Himadri Bhattacharjee
2025-06-21 11:44:55 +05:30
parent f07a688708
commit 816f758e67
2 changed files with 6 additions and 9 deletions

View File

@@ -53,7 +53,7 @@ pub(crate) async fn get_snippet(
let langfn = get_lang(lang)?;
println!("{prompt:?}");
// span!(Level::INFO, "received a prompt {prompt:?}");
let mut appstate = data.inner.lock().map_err(|_| Error::Busy)?;
let target = appstate

View File

@@ -33,7 +33,9 @@ pub fn from_path<P: AsRef<Path>>(path: P) -> Result<MutationCollection> {
let node_name = node.name().value();
if node_name != "mutation" && node_name != "description" {
bail!("document root must only contain `mutation` or `description` nodes: got {node_name}");
bail!(
"document root must only contain `mutation` or `description` nodes: got {node_name}"
);
}
if node_name == "description" {
@@ -97,7 +99,7 @@ pub fn apply(
let mut query_result_map = HashMap::new();
for mutation in &mutations.mutations {
let query_result = query(root_node, mutation.expression.as_str(), &lang, source_bytes);
eprintln!("{:?}", query_result);
// span!(Level::DEBUG, "{:?}", query_result);
split_ats.push(query_result.start);
split_ats.push(query_result.end);
@@ -108,7 +110,7 @@ pub fn apply(
Substitute::Capture(attrib) => &query_result.captures[attrib],
})
}
eprintln!("{ast_rewrite:?}");
// span!(Level::DEBUG, "{ast_rewrite:?}");
query_result_map.insert(query_result.start, ast_rewrite);
}
@@ -122,11 +124,6 @@ pub fn apply(
Ok(output)
}
fn display_s_expr(node: Node<'_>) {
let exp = node.to_sexp();
eprintln!("{exp:?}");
}
#[derive(Debug)]
struct QueryCooked {
captures: HashMap<String, String>,