public function AbstractLogger::debug

Detailed debug information.

Parameters

string $message:

array $context:

Return value

null

Overrides LoggerInterface::debug

File

drupal/core/vendor/psr/log/Psr/Log/AbstractLogger.php, line 116

Class

AbstractLogger
This is a simple Logger implementation that other Loggers can inherit from.

Namespace

Psr\Log

Code

public function debug($message, array $context = array()) {
  $this
    ->log(LogLevel::DEBUG, $message, $context);
}