We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f3a1513 + 2bdb9a9 commit 05e64cbCopy full SHA for 05e64cb
examples/runner
@@ -119,7 +119,8 @@ $app = (new SingleCommandApplication('Symfony AI Example Runner'))
119
foreach ($exampleRuns as $run) {
120
if (!$run['process']->isSuccessful()) {
121
$io->section('Error in ' . $run['example']->getRelativePathname());
122
- $io->text($run['process']->getOutput());
+ $output = $run['process']->getErrorOutput();
123
+ $io->text('' !== $output ? $output : $run['process']->getOutput());
124
}
125
126
0 commit comments