php-censor/PHPCI/Logging/OutputLogHandler.php

33 lines
617 B
PHP
Raw Normal View History

<?php
namespace PHPCI\Logging;
use Monolog\Handler\AbstractProcessingHandler;
use Psr\Log\LogLevel;
use Symfony\Component\Console\Output\OutputInterface;
class OutputLogHandler extends AbstractProcessingHandler
{
2013-10-26 17:25:34 +02:00
/**
* @var OutputInterface
*/
protected $output;
function __construct(
OutputInterface $output,
$level = LogLevel::INFO,
$bubble = true
) {
parent::__construct($level, $bubble);
$this->output = $output;
}
protected function write(array $record)
{
$this->output->writeln((string)$record['formatted']);
}
}