From 6e3f4bf80490c478a9638a9cff21cf532ecc113c Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Tue, 2 Feb 2021 00:07:43 -0500 Subject: [PATCH] Removing some forgotten debug console logging. --- views/series.html | 1 - views/settingssonarr.html | 1 - 2 files changed, 2 deletions(-) diff --git a/views/series.html b/views/series.html index 13fed012b..46a8cab0d 100644 --- a/views/series.html +++ b/views/series.html @@ -174,7 +174,6 @@ var completed = data.episodeFileCount - data.episodeMissingCount; var completed_style = ''; var completed_text = ''; - console.log(data.profileId); if (data.episodeFileCount && data.profileId.id !== null) { completed_style = ' style="width: ' + completed / total * 100 + '%;"'; completed_text = completed + '/' + total; diff --git a/views/settingssonarr.html b/views/settingssonarr.html index a4e53e5e8..5f0b961ad 100644 --- a/views/settingssonarr.html +++ b/views/settingssonarr.html @@ -511,7 +511,6 @@ if (data.status) { $('#test_sonarr_span').text('Test Successful: Sonarr v' + data.version).css('color', 'green'); } else { - console.log(data); $('#test_sonarr_span').text('Test Failed: ' + data.error).css('color', 'red'); } });