diff --git a/dist/index.js b/dist/index.js index 14becec..4c8ff16 100644 --- a/dist/index.js +++ b/dist/index.js @@ -5882,7 +5882,7 @@ async function run () { } catch (e) { core.setFailed(`Balto error: ${e}`) } finally { - core.debug(`Generated report: ${report}`) + core.debug(`Generated report: ${JSON.stringify(report, null, 2)}`) report.output.annotations.forEach(annotationToOutputCommand) setOutput("issuesCount", report.output.annotations.length) if (report.conclusion === "action_required" || report.conclusion === "failure") { diff --git a/src/main.js b/src/main.js index b477228..d4a3a47 100644 --- a/src/main.js +++ b/src/main.js @@ -189,7 +189,7 @@ async function run () { } catch (e) { core.setFailed(`Balto error: ${e}`) } finally { - core.debug(`Generated report: ${report}`) + core.debug(`Generated report: ${JSON.stringify(report, null, 2)}`) report.output.annotations.forEach(annotationToOutputCommand) setOutput("issuesCount", report.output.annotations.length) if (report.conclusion === "action_required" || report.conclusion === "failure") {