public function AbstractLogger::debug in TMGMT Translator Smartling 8.4
Same name and namespace in other branches
- 8.2 vendor/psr/log/Psr/Log/AbstractLogger.php \Psr\Log\AbstractLogger::debug()
- 8.3 vendor/psr/log/Psr/Log/AbstractLogger.php \Psr\Log\AbstractLogger::debug()
Detailed debug information.
Parameters
string $message:
array $context:
Return value
void
Overrides LoggerInterface::debug
File
- vendor/
psr/ log/ Psr/ Log/ AbstractLogger.php, line 124
Class
- AbstractLogger
- This is a simple Logger implementation that other Loggers can inherit from.
Namespace
Psr\LogCode
public function debug($message, array $context = array()) {
$this
->log(LogLevel::DEBUG, $message, $context);
}