Skip to content

Commit 94b3288

Browse files
committed
Dump logs to stdout instead of stderr to avoid synchronization problems.
1 parent 8705aaf commit 94b3288

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/analyze-action.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/analyze-action.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ async function run() {
136136
core.startGroup(
137137
`CodeQL Debug Logs - ${language} - ${entry.name}`
138138
);
139-
process.stderr.write(
139+
process.stdout.write(
140140
fs.readFileSync(path.resolve(dir, entry.name))
141141
);
142142
core.endGroup();

0 commit comments

Comments
 (0)