Jobby\BackgroundJob::getLogfile PHP 메소드

getLogfile() 보호된 메소드

protected getLogfile ( ) : string
리턴 string
    protected function getLogfile()
    {
        if ($this->config['output'] === null) {
            return false;
        }
        $logfile = $this->config['output'];
        $logs = dirname($logfile);
        if (!file_exists($logs)) {
            mkdir($logs, 0755, true);
        }
        return $logfile;
    }