diff options
author | Casper Beyer <caspervonb@pm.me> | 2020-10-28 09:45:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-27 21:45:31 -0400 |
commit | a2f126068e17f6b586a049d5167f48284ed14f8e (patch) | |
tree | 677de634451ac2ff0dee8e7cb39a8d04698ef67d /std/wasi/snapshot_preview1.ts | |
parent | 6844caa9a552e3f8fd1f2139bdffdd090d48fe9a (diff) |
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.
Diffstat (limited to 'std/wasi/snapshot_preview1.ts')
-rw-r--r-- | std/wasi/snapshot_preview1.ts | 2 |
1 files changed, 0 insertions, 2 deletions
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; } |