Home
last modified time | relevance | path

Searched refs:logfile (Results 1 – 4 of 4) sorted by relevance

/dokuwiki/lib/plugins/logviewer/
H A Dadmin.php88 * Read and output the logfile contents
92 $logfile = Logger::getInstance($this->facility)->getLogfile($this->date);
93 if (!file_exists($logfile)) {
99 $lines = $this->getLogLines($logfile);
133 * Read the lines of the logfile and return them as array
/dokuwiki/inc/
H A DLogger.php135 'logfile' => $this->getLogfile($datetime),
152 return $this->writeLogLines($data['loglines'], $data['logfile']);
225 * @param string $logfile where to write to
228 protected function writeLogLines($lines, $logfile)
233 return io_saveFile($logfile, implode("\n", $lines) . "\n", true);
221 writeLogLines($lines, $logfile) global() argument
/dokuwiki/inc/ChangeLog/
H A DChangeLogTrait.php83 $logfile = $this->getChangelogFilename();
84 return file_exists($logfile);
H A DChangeLog.php209 $logfile = $this->getChangelogFilename();
210 if (!file_exists($logfile)) return $revs;
227 if (filesize($logfile) < $this->chunk_size || $this->chunk_size == 0) {
229 $lines = file($logfile);
235 $fp = fopen($logfile, 'rb'); // "file pointer"