From 490b2604544de227eb7538c47a257ca5fa3727e4 Mon Sep 17 00:00:00 2001 From: Adam Powers Date: Tue, 1 Sep 2020 13:11:09 -0700 Subject: [PATCH] remove stray console.log --- sys/lib/npm-package/src/nethackShim.js | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/lib/npm-package/src/nethackShim.js b/sys/lib/npm-package/src/nethackShim.js index 98d0cf808..638460278 100644 --- a/sys/lib/npm-package/src/nethackShim.js +++ b/sys/lib/npm-package/src/nethackShim.js @@ -4,7 +4,6 @@ let Module; let userCallback; let savedOnRuntimeInitialized; function nethackStart(cb, inputModule = {}) { - console.log("cb is", cb); if(typeof cb !== "function") throw new TypeError("expected first argument to be callback function"); if(typeof inputModule !== "object") throw new TypeError("expected second argument to be object");