dev: remove some debug logging (#300)

This commit is contained in:
Myriad-Dreamin 2024-05-18 12:12:40 +08:00 committed by GitHub
parent 937f6f042f
commit 71591b1f08
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -698,7 +698,7 @@ fn type_completion(
}
}
log::info!("type_completion: {:?}", infer_type);
log::debug!("type_completion: {:?}", infer_type);
match infer_type? {
Ty::Any => return None,
@ -1113,7 +1113,7 @@ pub fn complete_path(
rng = cursor..cursor;
is_in_text = false;
}
log::info!("complete_path: is_in_text: {is_in_text:?}");
log::debug!("complete_path: is_in_text: {is_in_text:?}");
let path = Path::new(text.as_str());
let has_root = path.has_root();