Skip to content

Commit

Permalink
removed debug outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
petersem committed Feb 2, 2023
1 parent 38b0341 commit 2b68a12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/arr/readarr.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class Readarr {
* @returns {Promise<object>} json results - results of search
*/
async GetComingSoonRawData(startDate, endDate) {
console.log(this.readarrUrl + "/api/v1/calendar?unmonitored=false&apikey=" + this.readarrToken + "&start=" + startDate + "&end=" + endDate);
//console.log(this.readarrUrl + "/api/v1/calendar?unmonitored=false&apikey=" + this.readarrToken + "&start=" + startDate + "&end=" + endDate);
let response;
try {
response = await axios
Expand Down Expand Up @@ -108,7 +108,7 @@ class Readarr {
* @returns {Promise<object>} json results - results of search
*/
async GetBookRawData(bookId) {
console.log(this.readarrUrl + "/api/v1/book/" + bookId + "?apikey=" + this.readarrToken);
//console.log(this.readarrUrl + "/api/v1/book/" + bookId + "?apikey=" + this.readarrToken);
let response;
try {
response = await axios
Expand Down

0 comments on commit 2b68a12

Please sign in to comment.