diff --git a/src/common/retryer.js b/src/common/retryer.js index 9eaaf0aef0cf8..592463ef2a09c 100644 --- a/src/common/retryer.js +++ b/src/common/retryer.js @@ -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,