yii\BaseYii::info PHP Method

info() public static method

An informative message is typically logged by an application to keep record of something important (e.g. an administrator logs in).
public static info ( string $message, string $category = 'application' )
$message string the message to be logged.
$category string the category of the message.
    public static function info($message, $category = 'application')
    {
        static::getLogger()->log($message, Logger::LEVEL_INFO, $category);
    }