yii\BaseYii::endProfile PHP Method

endProfile() public static method

This has to be matched with a previous call to [[beginProfile]] with the same category name.
See also: beginProfile()
public static endProfile ( string $token, string $category = 'application' )
$token string token for the code block
$category string the category of this log message
    public static function endProfile($token, $category = 'application')
    {
        static::getLogger()->log($token, Logger::LEVEL_PROFILE_END, $category);
    }