Commit bf90126e authored by jwage's avatar jwage

[2.0] Adding exception outputting to CLI

parent b8bcd51f
...@@ -185,7 +185,7 @@ class Cli ...@@ -185,7 +185,7 @@ class Cli
} }
} catch (\Doctrine\Common\DoctrineException $e) { } catch (\Doctrine\Common\DoctrineException $e) {
$this->_printer->writeln( $this->_printer->writeln(
$taskName . ':' . $e->getMessage() . PHP_EOL, 'ERROR' $taskName . ': ' . $e->getMessage() . PHP_EOL . PHP_EOL . $e->getTraceAsString(), 'ERROR'
); );
} }
} }
......
Markdown is supported
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