Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\Logger\LoggerChannelFactoryInterface. | |
*/ | |
namespace Drupal\Core\Logger; | |
use Psr\Log\LoggerInterface; | |
/** | |
* Logger channel factory interface. | |
*/ | |
interface LoggerChannelFactoryInterface { | |
/** | |
* Retrieves the registered logger for the requested channel. | |
* | |
* @return \Drupal\Core\Logger\LoggerChannelInterface | |
* The registered logger for this channel. | |
*/ | |
public function get($channel); | |
/** | |
* Adds a logger to all the channels. | |
* | |
* @param \Psr\Log\LoggerInterface $logger | |
* The PSR-3 logger to add. | |
* @param int $priority | |
* The priority of the logger being added. | |
* | |
* @see \Drupal\Core\DependencyInjection\Compiler\RegisterLoggersPass | |
*/ | |
public function addLogger(LoggerInterface $logger, $priority = 0); | |
} |