You are here

public function LoggerChannelFactoryInterface::addLogger in Drupal 8

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

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.

See also

\Symfony\Component\HttpKernel\DependencyInjection\LoggerPass

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

File

core/lib/Drupal/Core/Logger/LoggerChannelFactoryInterface.php, line 30

Class

LoggerChannelFactoryInterface
Logger channel factory interface.

Namespace

Drupal\Core\Logger

Code

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