Skip to content

Commit

Permalink
Add verbose logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed May 14, 2014
1 parent d16af09 commit be211f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Console/Command/Task/ProjectTask.php
Expand Up @@ -122,6 +122,7 @@ protected function _searchPath($path) {
foreach ($path as $dir) {
foreach ($composer as $cmd) {
if (file_exists($dir . DS . $cmd)) {
$this->_io->verbose('Found composer executable on ' . $dir);
return $dir . DS . $cmd;
}
}
Expand Down Expand Up @@ -150,6 +151,7 @@ public function bake($path) {
1 => ['pipe', 'w'],
2 => ['pipe', 'w']
];
$this->_io->verbose('Running ' . $command);
$process = proc_open(
$command,
$descriptorSpec,
Expand Down

0 comments on commit be211f8

Please sign in to comment.