function LoggerChannelFactory::addLogger
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Logger/LoggerChannelFactory.php \Drupal\Core\Logger\LoggerChannelFactory::addLogger()
- 10 core/lib/Drupal/Core/Logger/LoggerChannelFactory.php \Drupal\Core\Logger\LoggerChannelFactory::addLogger()
- 11.x core/lib/Drupal/Core/Logger/LoggerChannelFactory.php \Drupal\Core\Logger\LoggerChannelFactory::addLogger()
Overrides LoggerChannelFactoryInterface::addLogger
File
-
core/
lib/ Drupal/ Core/ Logger/ LoggerChannelFactory.php, line 55
Class
- LoggerChannelFactory
- Defines a factory for logging channels.
Namespace
Drupal\Core\LoggerCode
public function addLogger(LoggerInterface $logger, $priority = 0) {
// Store it so we can pass it to potential new logger instances.
$this->loggers[$priority][] = $logger;
// Add the logger to already instantiated channels.
foreach ($this->channels as $channel) {
$channel->addLogger($logger, $priority);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.