Commit 941eae65 authored by anuraghazra's avatar anuraghazra
Browse files

chore: remove console log

parent 6fa8c267
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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,