diff --git a/src/Presence.js b/src/Presence.js index c36bbdd8be..849efdef1c 100644 --- a/src/Presence.js +++ b/src/Presence.js @@ -82,7 +82,6 @@ class Presence { * @param {string} newState the new presence state (see PRESENCE enum) */ async setState(newState) { - console.log("setting Presence state!!", newState); if (newState === this.state) { return; } diff --git a/src/utils/Timer.js b/src/utils/Timer.js index 566b6fb837..aeac0887c9 100644 --- a/src/utils/Timer.js +++ b/src/utils/Timer.js @@ -60,7 +60,6 @@ export default class Timer { if (timeout === this._timeout) { return; } - console.log(`changing timer timeout from ${this._timeout} to ${timeout}`); const isSmallerTimeout = timeout < this._timeout; this._timeout = timeout; if (this.isRunning() && isSmallerTimeout) {