fix: remove debugging (#215)

This commit is contained in:
Myriad-Dreamin 2024-04-27 09:19:24 +08:00 committed by GitHub
parent 09c5882c97
commit 8293f9e2cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -447,10 +447,6 @@ fn type_completion(
FlowBuiltinType::Path(p) => {
let source = ctx.ctx.source_by_id(ctx.root.span().id()?).ok()?;
log::debug!(
"type_path_completion: {:?}",
&source.text()[ctx.cursor - 10..ctx.cursor]
);
ctx.completions2.extend(
complete_path(ctx.ctx, None, &source, ctx.cursor, p)
.into_iter()