From a2f126068e17f6b586a049d5167f48284ed14f8e Mon Sep 17 00:00:00 2001 From: Casper Beyer Date: Wed, 28 Oct 2020 09:45:31 +0800 Subject: fix(std/wasi): remove stray console.log call (#8156) A stray console.log call made it into path_open which should have been reverted, it was only meant for debugging on the CI. --- std/wasi/snapshot_preview1.ts | 2 -- 1 file changed, 2 deletions(-) (limited to 'std') diff --git a/std/wasi/snapshot_preview1.ts b/std/wasi/snapshot_preview1.ts index c8246b280..1d9549f15 100644 --- a/std/wasi/snapshot_preview1.ts +++ b/std/wasi/snapshot_preview1.ts @@ -1219,8 +1219,6 @@ export default class Context { ) { try { path = Deno.realPathSync(resolvedPath); - - console.log("RESOLVED REAL PATH: %s", path); if (relative(entry.path, path).startsWith("..")) { return ERRNO_NOTCAPABLE; } -- cgit v1.2.3