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.
1 parent 27f4121 commit 2bdb9a9Copy full SHA for 2bdb9a9
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