Merge pull request #4306 from Infisical/log-github-error

log github error
This commit is contained in:
x032205
2025-08-04 13:48:38 -04:00
committed by GitHub

View File

@@ -348,6 +348,8 @@ export const validateGitHubConnectionCredentials = async (
});
}
} catch (e: unknown) {
logger.error(e, "Unable to verify GitHub connection");
if (e instanceof BadRequestError) {
throw e;
}