
| Current Path : /var/www/html/rocksensor1/web/core/lib/Drupal/Core/Logger/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/core/lib/Drupal/Core/Logger/LoggerChannelFactoryInterface.php |
<?php
namespace Drupal\Core\Logger;
use Psr\Log\LoggerInterface;
/**
* Logger channel factory interface.
*/
interface LoggerChannelFactoryInterface {
/**
* Retrieves the registered logger for the requested channel.
*
* @return \Drupal\Core\Logger\LoggerChannelInterface
* The registered logger for this channel.
*/
public function get($channel);
/**
* Adds a logger to all the channels.
*
* @param \Psr\Log\LoggerInterface $logger
* The PSR-3 logger to add.
* @param int $priority
* The priority of the logger being added.
*
* @see \Symfony\Component\HttpKernel\DependencyInjection\LoggerPass
*/
public function addLogger(LoggerInterface $logger, $priority = 0);
}