From a53f61ebf4be91432ef24365314d989b47d41a7e Mon Sep 17 00:00:00 2001 From: Paul Gilzow Date: Tue, 10 Dec 2024 10:25:24 -0600 Subject: [PATCH] debug redirect check failures --- .github/actions/redirection-verification/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/redirection-verification/index.js b/.github/actions/redirection-verification/index.js index 84eeb39806..1f84a4d511 100644 --- a/.github/actions/redirection-verification/index.js +++ b/.github/actions/redirection-verification/index.js @@ -96,11 +96,14 @@ const verify = async () => { } catch (reqerr) { // core.debug(`issue encountered with path ${path}!!! Returned status is ${reqerr.status}. More info: `) core.info(`issue encountered with path ${path}!!! Returned status is ${reqerr.status}. More info: `) + console.log(reqerr) if(axios.isAxiosError(reqerr)) { // core.debug(reqerr.toJSON()) + core.info('Axios error.') core.info(reqerr.toJSON()) } else { console.log(reqerr) + core.info('Non-Axios error? ') core.info(JSON.stringify(reqerr)) }