public function LoggerChannelFactory::addLogger

public LoggerChannelFactory::addLogger(LoggerInterface $logger, $priority = 0)

Adds a logger to all the channels.

Parameters

\Psr\Log\LoggerInterface $logger: The PSR-3 logger to add.

int $priority: The priority of the logger being added.

Overrides LoggerChannelFactoryInterface::addLogger

See also

\Drupal\Core\DependencyInjection\Compiler\RegisterLoggersPass

File

core/lib/Drupal/Core/Logger/LoggerChannelFactory.php, line 55

Class

LoggerChannelFactory
Defines a factory for logging channels.

Namespace

Drupal\Core\Logger

Code

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);
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Logger!LoggerChannelFactory.php/function/LoggerChannelFactory::addLogger/8.1.x