Skip to content

Commit

Permalink
format stdout/err in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
pelikhan committed Aug 13, 2024
1 parent 8fbef37 commit 1a8f515
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/src/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,11 +255,11 @@ export class DockerManager {
`exit code: ${sres.exitCode}`
)
if (sres.stdout) {
trace?.detailsFenced(`stdout`, sres.stdout)
trace?.detailsFenced(`stdout`, sres.stdout, "txt")
if (!isQuiet) logVerbose(sres.stdout)
}
if (sres.stderr) {
trace?.detailsFenced(`stderr`, sres.stderr)
trace?.detailsFenced(`stderr`, sres.stderr, "txt")
if (!isQuiet) logVerbose(sres.stderr)
}

Expand Down

0 comments on commit 1a8f515

Please sign in to comment.