Skip to content

Commit b536361

Browse files
committed
Fix IO error usage
1 parent 159d4f6 commit b536361

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Command/ShowCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function execute(Arguments $args, ConsoleIo $io) {
7373
$content .= ' - ' . $shortMessage;
7474

7575
if ($log->type === 'error') {
76-
$io->err($content);
76+
$io->error($content);
7777
} elseif ($log->type === 'warning' || $log->type === 'notice') {
7878
$io->warning($content);
7979
} else {

0 commit comments

Comments
 (0)