Skip to content
Snippets Groups Projects
Commit d658634e authored by Safwan Khan's avatar Safwan Khan
Browse files

MAGETWO-36068: Move dev/shell/log.php

- Fixed a static error.
parent 30358f3b
Branches
No related merge requests found
...@@ -56,8 +56,9 @@ class Console ...@@ -56,8 +56,9 @@ class Console
$this->console->writeln($this->getStartTag($type) . "\t" . $className . $this->getEndTag($type)); $this->console->writeln($this->getStartTag($type) . "\t" . $className . $this->getEndTag($type));
foreach ($messages as $message) { foreach ($messages as $message) {
if ($message) { if ($message) {
$this->console->writeln($this->getStartTag($type) . "\t\t" $this->console->writeln(
. $message . $this->getEndTag($type)); $this->getStartTag($type) . "\t\t" . $message . $this->getEndTag($type)
);
if ($type != Log::GENERATION_SUCCESS) { if ($type != Log::GENERATION_SUCCESS) {
$errorsCount++; $errorsCount++;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment