Skip to content

Commit

Permalink
Core.debug
Browse files Browse the repository at this point in the history
  • Loading branch information
luketomlinson committed Sep 26, 2022
1 parent eb0f407 commit ac0c7cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13354,7 +13354,7 @@ function getRetryOptions(retries, exemptStatusCodes) {
const requestOptions = {
retries
};
Object(core.info)(`GitHub client configured with: (retries: ${requestOptions.retries}, retry-exempt-status-code: ${(_a = retryOptions === null || retryOptions === void 0 ? void 0 : retryOptions.doNotRetry) !== null && _a !== void 0 ? _a : 'octokit default: [400, 401, 403, 404, 422]'})`);
Object(core.debug)(`GitHub client configured with: (retries: ${requestOptions.retries}, retry-exempt-status-code: ${(_a = retryOptions === null || retryOptions === void 0 ? void 0 : retryOptions.doNotRetry) !== null && _a !== void 0 ? _a : 'octokit default: [400, 401, 403, 404, 422]'})`);
return [retryOptions, requestOptions];
}
function parseNumberArray(listString) {
Expand Down
2 changes: 1 addition & 1 deletion src/retry-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function getRetryOptions(
retries
}

core.info(
core.debug(
`GitHub client configured with: (retries: ${
requestOptions.retries
}, retry-exempt-status-code: ${
Expand Down

0 comments on commit ac0c7cb

Please sign in to comment.