Cml\Logger\Base::info PHP Method

info() public method

例如:用户登录和SQL记录。
public info ( string $message, array $context = [] ) : null
$message string 要记录到log的信息
$context array 上下文信息
return null
    public function info($message, array $context = [])
    {
        return $this->log(self::INFO, $message, $context);
    }