From 190dffd1415cc8be52d4659aced51625d63bdbc1 Mon Sep 17 00:00:00 2001 From: Derek Schuff Date: Fri, 15 Dec 2017 13:23:12 -0800 Subject: [PATCH] remove extra logging --- arch/wasm32/wasm.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/wasm32/wasm.js b/arch/wasm32/wasm.js index d5a9d891..4743b625 100644 --- a/arch/wasm32/wasm.js +++ b/arch/wasm32/wasm.js @@ -34,8 +34,6 @@ if (typeof process === 'object' && typeof require === 'function') { // This is n const nodePath = require('path'); var read = function(file_path) { filename = nodePath['normalize'](file_path); - console.log(file_path); - console.log(filename); return nodeFS['readFileSync'](filename); } var print = console.log;