From 55817b65b5c2e699ab336a5552c2b65866a7929e Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Wed, 9 Jan 2019 06:35:22 +1100 Subject: [PATCH] mute logging of injected scripts --- assets/default/wails.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/assets/default/wails.js b/assets/default/wails.js index e7bc365f7..208a73711 100644 --- a/assets/default/wails.js +++ b/assets/default/wails.js @@ -41,11 +41,9 @@ // -------------- JS ---------------- function addScript(js, callbackID) { - console.log("Adding script: " + js) var script = document.createElement("script"); script.text = js; document.body.appendChild(script); - console.log("Calling back with:" + callbackID); window.wails.events.emit(callbackID); }