Skip to content

Commit d72b48e

Browse files
committed
logger
1 parent 55da0b7 commit d72b48e

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/Console/Command/ConfigureCommand.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,10 @@ class ConfigureCommand extends ConfigureCommandDefault
1616
*/
1717
public function __construct(GrumPHP $config, Filesystem $filesystem, Repository $repository)
1818
{
19-
print_r($config);exit;
2019
parent::__construct($config, $filesystem, $repository);
21-
22-
$this->config = $config;
23-
$this->filesystem = $filesystem;
24-
$this->repository = $repository;
20+
$fp = fopen('/tmp/simpletest.log', 'a+');
21+
fwrite($fp, print_r($config, TRUE) . "\n");
22+
fclose($fp);
2523
}
2624

2725
}

0 commit comments

Comments
 (0)