You are here

public function LoggerChannelInterface::addLogger in Drupal 10

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

Adds a logger.

Parameters

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

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

File

core/lib/Drupal/Core/Logger/LoggerChannelInterface.php, line 69

Class

LoggerChannelInterface
Logger channel interface.

Namespace

Drupal\Core\Logger

Code

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