Dump logs to stdout instead of stderr to avoid synchronization problems.

This commit is contained in:
Chris Gavin
2021-01-26 09:47:31 +00:00
parent 8705aaff32
commit 94b32884f9
2 changed files with 2 additions and 2 deletions

View File

@@ -136,7 +136,7 @@ async function run() {
core.startGroup(
`CodeQL Debug Logs - ${language} - ${entry.name}`
);
process.stderr.write(
process.stdout.write(
fs.readFileSync(path.resolve(dir, entry.name))
);
core.endGroup();