for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebServCo\Framework\Log;
final class CliOutputLogger extends AbstractOutputLogger implements
\WebServCo\Framework\Interfaces\OutputLoggerInterface
{
public function clear()
$this->output(\WebServCo\Framework\Cli\Ansi::clear(), true);
}
public function log($level, $message, $context = [])
$this->output($message, true);
if (!empty($context)) {
$this->output(var_export($context, true), true);