Prado\Util\TFileLogRoute::processLogs PHP Метод

processLogs() защищенный Метод

Saves log messages in files.
protected processLogs ( $logs )
    protected function processLogs($logs)
    {
        $logFile = $this->getLogPath() . DIRECTORY_SEPARATOR . $this->getLogFile();
        if (@filesize($logFile) > $this->_maxFileSize * 1024) {
            $this->rotateFiles();
        }
        foreach ($logs as $log) {
            error_log($this->formatLogMessage($log[0], $log[1], $log[2], $log[3]), 3, $logFile);
        }
    }