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

getLogPath() публичный Метод

public getLogPath ( ) : string
Результат string directory storing log files. Defaults to application runtime path.
    public function getLogPath()
    {
        if ($this->_logPath === null) {
            $this->_logPath = $this->getApplication()->getRuntimePath();
        }
        return $this->_logPath;
    }