Skip to content

Commit 28c792d

Browse files
committed
Ooops
1 parent ebd46d2 commit 28c792d

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/deno_dir.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ impl DenoDir {
176176
if module_name.ends_with(".ts") || module_name.ends_with(".js") {
177177
return try_extension("");
178178
}
179-
println!("Trying {}.ts...", module_name);
179+
// println!("Trying {}.ts...", module_name);
180180
if let Ok(v) = try_extension(".ts") {
181181
return Ok(v);
182182
}
183-
println!("Trying {}.js...", module_name);
183+
// println!("Trying {}.js...", module_name);
184184
try_extension(".js")
185185
}
186186
}

tests/015_import_no_ext.out

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
Trying /Users/kevinqian/Desktop/Programming/Deno/deno/tests/015_import_no_ext.ts...
2-
Trying /Users/kevinqian/Desktop/Programming/Deno/deno/tests/subdir/mod3.ts...
3-
Trying /Users/kevinqian/Desktop/Programming/Deno/deno/tests/subdir/mod4.ts...
4-
Trying /Users/kevinqian/Desktop/Programming/Deno/deno/tests/subdir/mod4.js...
51
Trying http://localhost:4545/tests/subdir/mod2.ts...
62
Downloading http://localhost:4545/tests/subdir/mod2.ts
7-
Trying /Users/kevinqian/Desktop/Programming/Deno/deno/tests/subdir/print_hello.ts...
83
Downloading http://localhost:4545/tests/subdir/print_hello.ts
94
true
105
[Function: printHello]

0 commit comments

Comments
 (0)