class LoggerChannelFactory
Defines a factory for logging channels.
Hierarchy
- class \Drupal\Core\Logger\LoggerChannelFactory implements \Drupal\Core\Logger\LoggerChannelFactoryInterface, \Symfony\Component\DependencyInjection\ContainerAwareInterface uses \Symfony\Component\DependencyInjection\ContainerAwareTrait
 
Expanded class hierarchy of LoggerChannelFactory
2 files declare their use of LoggerChannelFactory
- install.core.inc in core/
includes/ install.core.inc  - API functions for installing Drupal.
 - LoggerChannelFactoryTest.php in core/
tests/ Drupal/ Tests/ Core/ Logger/ LoggerChannelFactoryTest.php  
1 string reference to 'LoggerChannelFactory'
- core.services.yml in core/
core.services.yml  - core/core.services.yml
 
1 service uses LoggerChannelFactory
File
- 
              core/
lib/ Drupal/ Core/ Logger/ LoggerChannelFactory.php, line 12  
Namespace
Drupal\Core\LoggerView source
class LoggerChannelFactory implements LoggerChannelFactoryInterface, ContainerAwareInterface {
  use ContainerAwareTrait;
  
  /**
   * Array of all instantiated logger channels keyed by channel name.
   *
   * @var \Drupal\Core\Logger\LoggerChannelInterface[]
   */
  protected $channels = [];
  
  /**
   * An array of arrays of \Psr\Log\LoggerInterface keyed by priority.
   *
   * @var array
   */
  protected $loggers = [];
  
  /**
   * {@inheritdoc}
   */
  public function get($channel) {
    if (!isset($this->channels[$channel])) {
      $instance = new LoggerChannel($channel);
      // If we have a container set the request_stack and current_user services
      // on the channel. It is up to the channel to determine if there is a
      // current request.
      if ($this->container) {
        $instance->setRequestStack($this->container
          ->get('request_stack'));
        $instance->setCurrentUser($this->container
          ->get('current_user'));
      }
      // Pass the loggers to the channel.
      $instance->setLoggers($this->loggers);
      $this->channels[$channel] = $instance;
    }
    return $this->channels[$channel];
  }
  
  /**
   * {@inheritdoc}
   */
  public function addLogger(LoggerInterface $logger, $priority = 0) {
    // Store it so we can pass it to potential new logger instances.
    $this->loggers[$priority][] = $logger;
    // Add the logger to already instantiated channels.
    foreach ($this->channels as $channel) {
      $channel->addLogger($logger, $priority);
    }
  }
}
Members
| Title Sort descending | Modifiers | Object type | Summary | Overriden Title | 
|---|---|---|---|---|
| LoggerChannelFactory::$channels | protected | property | Array of all instantiated logger channels keyed by channel name. | |
| LoggerChannelFactory::$loggers | protected | property | An array of arrays of \Psr\Log\LoggerInterface keyed by priority. | |
| LoggerChannelFactory::addLogger | public | function | Adds a logger to all the channels. | Overrides LoggerChannelFactoryInterface::addLogger | 
| LoggerChannelFactory::get | public | function | Retrieves the registered logger for the requested channel. | Overrides LoggerChannelFactoryInterface::get | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.