summaryrefslogtreecommitdiff
path: root/cli/lsp/tsc.rs
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2022-03-21 12:33:37 +1100
committerGitHub <noreply@github.com>2022-03-21 12:33:37 +1100
commit1414dc503ba4cddcc5fdd5a0417d54678b1ac3fb (patch)
tree5aa4a03505c3c64d1624bca6417a47c84a97b6fd /cli/lsp/tsc.rs
parentdaa7c6d32ab5a4029f8084e174d621f5562256be (diff)
feat(lsp): support deno.enablePaths setting (#13978)
Ref: denoland/vscode_deno#633
Diffstat (limited to 'cli/lsp/tsc.rs')
-rw-r--r--cli/lsp/tsc.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/cli/lsp/tsc.rs b/cli/lsp/tsc.rs
index 4f3e88e7d..eaeef7a51 100644
--- a/cli/lsp/tsc.rs
+++ b/cli/lsp/tsc.rs
@@ -882,11 +882,6 @@ impl DocumentSpan {
language_server: &language_server::Inner,
) -> Option<ModuleSpecifier> {
let specifier = normalize_specifier(&self.file_name).ok()?;
- log::info!(
- "to_target file_name: {} specifier: {}",
- self.file_name,
- specifier
- );
let asset_or_doc =
language_server.get_maybe_cached_asset_or_document(&specifier)?;
let line_index = asset_or_doc.line_index();