Skip to content
Snippets Groups Projects
Commit 15339efd authored by Thomas Müller's avatar Thomas Müller
Browse files

Limit the message to the console to the first 30 characters in order to not break the progress bar

parent 1bf4c75e
No related branches found
No related tags found
No related merge requests found
...@@ -146,7 +146,11 @@ class Upgrade extends Command { ...@@ -146,7 +146,11 @@ class Upgrade extends Command {
$output->writeln(''); $output->writeln('');
$progress->start($event[1]); $progress->start($event[1]);
} }
$progress->setMessage($event->getSubject()); $message = $event->getSubject();
if (strlen($message) > 30) {
$message = substr($message, 0, 27) . '...';
}
$progress->setMessage($message);
$progress->setProgress($event[0]); $progress->setProgress($event[0]);
$progress->display(); $progress->display();
if ($event[0] === $event[1]) { if ($event[0] === $event[1]) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment