You are here

public function LoggerChannelFactoryInterface::addLogger in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Logger/LoggerChannelFactoryInterface.php \Drupal\Core\Logger\LoggerChannelFactoryInterface::addLogger()

Adds a logger.

Here is were all services tagged as 'logger' are being retrieved and then passed to the channels after instantiation.

Parameters

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

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

See also

\Drupal\Core\DependencyInjection\Compiler\RegisterLoggersPass

1 method overrides LoggerChannelFactoryInterface::addLogger()
LoggerChannelFactory::addLogger in core/lib/Drupal/Core/Logger/LoggerChannelFactory.php
Adds a logger.

File

core/lib/Drupal/Core/Logger/LoggerChannelFactoryInterface.php, line 38
Contains \Drupal\Core\Logger\LoggerChannelFactoryInterface.

Class

LoggerChannelFactoryInterface
Logger channel factory interface.

Namespace

Drupal\Core\Logger

Code

public function addLogger(LoggerInterface $logger, $priority = 0);