From 4fdc2e26d40b675039a0af7b82ed78fd52da8d99 Mon Sep 17 00:00:00 2001 From: chme Date: Mon, 17 Dec 2018 13:17:14 +0100 Subject: [PATCH] [web-src] Remove debug logging to js console --- web-src/src/App.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/web-src/src/App.vue b/web-src/src/App.vue index 4996ff53..96e6ffa4 100644 --- a/web-src/src/App.vue +++ b/web-src/src/App.vue @@ -165,13 +165,11 @@ export default { this.$store.commit(types.UPDATE_SPOTIFY, data) if (this.token_timer_id > 0) { - console.log('clear old timer: ' + this.token_timer_id) window.clearTimeout(this.token_timer_id) this.token_timer_id = 0 } if (data.webapi_token_expires_in > 0 && data.webapi_token) { this.token_timer_id = window.setTimeout(this.update_spotify, 1000 * data.webapi_token_expires_in) - console.log('new timer: ' + this.token_timer_id + ', expires in ' + data.webapi_token_expires_in + ' seconds') } }) }