Google\Cloud\Logging\PsrLogger::info PHP Method

info() public method

Example: $psrLogger->info('info message');
public info ( string $message, array $context = [] )
$message string The message to log.
$context array [optional] Please see {@see \Google\Cloud\Logging\PsrLogger::log()} for the available options.
    public function info($message, array $context = [])
    {
        $this->log(Logger::INFO, $message, $context);
    }