function LoggerChannel::addLogger
Adds a logger.
Parameters
\Psr\Log\LoggerInterface $logger: The PSR-3 logger to add.
int $priority: The priority of the logger being added.
Overrides LoggerChannelInterface::addLogger
File
- 
              core/
lib/ Drupal/ Core/ Logger/ LoggerChannel.php, line 157  
Class
- LoggerChannel
 - Defines a logger channel that most implementations will use.
 
Namespace
Drupal\Core\LoggerCode
public function addLogger(LoggerInterface $logger, $priority = 0) {
  $this->loggers[$priority][] = $logger;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.