Skip to content

Commit

Permalink
fix(wasi): remove stray console.log call (denoland/deno#8156)
Browse files Browse the repository at this point in the history
A stray console.log call made it into path_open which should have been
reverted, it was only meant for debugging on the CI.
  • Loading branch information
caspervonb authored and denobot committed Feb 1, 2021
1 parent 71d2ed3 commit 098cfdd
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions wasi/snapshot_preview1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 098cfdd

Please sign in to comment.