Skip to content

Commit

Permalink
Disable debug output in preparation for AMO review.
Browse files Browse the repository at this point in the history
  • Loading branch information
basilevs committed Feb 15, 2020
1 parent 03b97a1 commit a16b78e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion background.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion options.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit a16b78e

Please sign in to comment.