function LoggerChannelTrait::getLogger
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Logger/LoggerChannelTrait.php \Drupal\Core\Logger\LoggerChannelTrait::getLogger()
- 10 core/lib/Drupal/Core/Logger/LoggerChannelTrait.php \Drupal\Core\Logger\LoggerChannelTrait::getLogger()
- 11.x core/lib/Drupal/Core/Logger/LoggerChannelTrait.php \Drupal\Core\Logger\LoggerChannelTrait::getLogger()
Gets the logger for a specific channel.
@todo Require the use of injected services: https://www.drupal.org/node/2733703
Parameters
string $channel: The name of the channel. Can be any string, but the general practice is to use the name of the subsystem calling this.
Return value
\Psr\Log\LoggerInterface The logger for the given channel.
3 calls to LoggerChannelTrait::getLogger()
- FormBase::logger in core/
lib/ Drupal/ Core/ Form/ FormBase.php - Gets the logger for a specific channel.
- ImageStyleDownloadController::__construct in core/
modules/ image/ src/ Controller/ ImageStyleDownloadController.php - Constructs an ImageStyleDownloadController object.
- SearchController::__construct in core/
modules/ search/ src/ Controller/ SearchController.php - Constructs a new search controller.
File
-
core/
lib/ Drupal/ Core/ Logger/ LoggerChannelTrait.php, line 37
Class
- LoggerChannelTrait
- Wrapper methods for the logger factory service.
Namespace
Drupal\Core\LoggerCode
protected function getLogger($channel) {
if (!$this->loggerFactory) {
$this->loggerFactory = \Drupal::service('logger.factory');
}
return $this->loggerFactory
->get($channel);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.