Home
last modified time | relevance | path

Searched refs:logline (Results 1 – 3 of 3) sorted by relevance

/dokuwiki/inc/ChangeLog/
H A DPageChangeLog.php58 $logline = static::buildLogLine($info, $timestamp);
59 io_saveFile(metaFN($this->id, '.changes'), $logline, true);
60 io_saveFile($conf['changelog'], $logline, true); //global changelog cache
H A DMediaChangeLog.php58 $logline = static::buildLogLine($info, $timestamp);
59 io_saveFile(mediaMetaFN($this->id, '.changes'), $logline, $append = true);
60 io_saveFile($conf['media_changelog'], $logline, $append = true); //global changelog cache
/dokuwiki/inc/
H A DLogger.php192 $logline = gmdate('Y-m-d H:i:s', $datetime) . "\t";
194 $logline .= $file;
195 if ($line) $logline .= "($line)";
197 $logline .= "\t" . $message;
198 array_unshift($loglines, $logline);