public function LoggerChannelFactoryInterface::addLogger in Service Container 7
Same name and namespace in other branches
- 7.2 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 src/
Logger/ LoggerChannelFactory.php - Adds a logger.
File
- lib/
Drupal/ Core/ Logger/ LoggerChannelFactoryInterface.php, line 38 - Contains \Drupal\Core\Logger\LoggerChannelFactoryInterface.
Class
- LoggerChannelFactoryInterface
- Logger channel factory interface.
Namespace
Drupal\Core\LoggerCode
public function addLogger(LoggerInterface $logger, $priority = 0);