DebugKit\Log\Engine\DebugKitLog::count PHP Method

count() public method

Get the number of log entries.
public count ( ) : integer
return integer
    public function count()
    {
        return array_reduce($this->_logs, function ($sum, $v) {
            return $sum + count($v);
        }, 0);
    }