Prado\Util\TFileLogRoute::getLogPath PHP Method

getLogPath() public method

public getLogPath ( ) : string
return 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;
    }