public function AbstractLogger::info in Lockr 7.3
Interesting events.
Example: User logs in, SQL logs.
Parameters
string $message:
array $context:
Return value
void
Overrides LoggerInterface::info
File
- vendor/
psr/ log/ Psr/ Log/ AbstractLogger.php, line 111
Class
- AbstractLogger
- This is a simple Logger implementation that other Loggers can inherit from.
Namespace
Psr\LogCode
public function info($message, array $context = array()) {
$this
->log(LogLevel::INFO, $message, $context);
}