Skip to content

Commit

Permalink
chore: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
anuraghazra committed Aug 17, 2020
1 parent 6fa8c26 commit 941eae6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/common/retryer.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ const retryer = async (fetcher, variables, retries = 0) => {
throw new CustomError("Maximum retries exceeded", CustomError.MAX_RETRY);
}
try {
logger.log(`Trying PAT_${retries + 1}`);

// try to fetch with the first token since RETRIES is 0 index i'm adding +1
let response = await fetcher(
variables,
Expand Down

0 comments on commit 941eae6

Please sign in to comment.