Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Logger/LoggerChannelTrait.php \Drupal\Core\Logger\LoggerChannelTrait::setLoggerFactory()
  2. 9 core/lib/Drupal/Core/Logger/LoggerChannelTrait.php \Drupal\Core\Logger\LoggerChannelTrait::setLoggerFactory()

Injects the logger channel factory.

Parameters

\Drupal\Core\Logger\LoggerChannelFactoryInterface $logger_factory: The logger channel factory service.

Return value

$this

File

core/lib/Drupal/Core/Logger/LoggerChannelTrait.php, line 52

Class

LoggerChannelTrait
Wrapper methods for the logger factory service.

Namespace

Drupal\Core\Logger

Code

public function setLoggerFactory(LoggerChannelFactoryInterface $logger_factory) {
  $this->loggerFactory = $logger_factory;
  return $this;
}