From b12ac2fab9e09c354ab34f5920a6beb88948b143 Mon Sep 17 00:00:00 2001 From: Nathan DECHER Date: Sun, 5 Apr 2020 18:31:06 +0200 Subject: [PATCH] removed console.log which flooded the whole console --- src/js/input.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/js/input.js b/src/js/input.js index f1fc3b5..d222f3c 100644 --- a/src/js/input.js +++ b/src/js/input.js @@ -112,7 +112,6 @@ const handleGamepads={ const handleEvent=(type, evt) => { for(let handler of handlers) { - console.log(type, handler); let fn=handler[type]; if(fn) fn(evt); }