From a16b78e60a9175929410acd1c4e3f97becd563ff Mon Sep 17 00:00:00 2001 From: Vasili Gulevich Date: Sat, 15 Feb 2020 11:26:49 +0700 Subject: [PATCH] Disable debug output in preparation for AMO review. --- background.js | 2 +- options.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/background.js b/background.js index 545c22a..333b6d5 100644 --- a/background.js +++ b/background.js @@ -18,7 +18,7 @@ if (!backgroundPage) throw new Error("Background page is not found"); function debug() { - console.debug.apply(console, arguments); + //console.debug.apply(console, arguments); } function handleError() { diff --git a/options.js b/options.js index d490254..4608a63 100644 --- a/options.js +++ b/options.js @@ -8,7 +8,7 @@ if (!sync) throw new Error("Storage is not available"); function debug(...args) { - console.debug(...args); + //console.debug(...args); } function functionEntry(functionName, ...args) {