fix default value for logdateformat - fixes #3107

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2017-01-19 20:08:15 -06:00
parent 48a3f2a8a2
commit 2316083256
No known key found for this signature in database
GPG Key ID: 9CE5ED29E7FCD38A
3 changed files with 4 additions and 4 deletions

View File

@ -716,7 +716,7 @@ $CONFIG = array(
/**
* This uses PHP.date formatting; see http://php.net/manual/en/function.date.php
*
* Defaults to ``Y-m-d\TH:i:sO`` (ISO8601)
* Defaults to ``Y-m-d\TH:i:sO`` (ISO8601) - see \DateTime::ISO8601
*/
'logdateformat' => 'F d, Y H:i:s',

View File

@ -101,7 +101,7 @@ class TimestampFormatter implements OutputFormatterInterface {
$timeZone = $timeZone !== null ? new \DateTimeZone($timeZone) : null;
$time = new \DateTime('now', $timeZone);
$timestampInfo = $time->format($this->config->getSystemValue('logdateformat', 'c'));
$timestampInfo = $time->format($this->config->getSystemValue('logdateformat', \DateTime::ISO8601));
return $timestampInfo . ' ' . $this->formatter->format($message);
}

View File

@ -75,8 +75,8 @@ class File {
$config = \OC::$server->getSystemConfig();
// default to ISO8601
$format = $config->getValue('logdateformat', 'c');
$logTimeZone = $config->getValue( "logtimezone", 'UTC' );
$format = $config->getValue('logdateformat', \DateTime::ISO8601);
$logTimeZone = $config->getValue('logtimezone', 'UTC');
try {
$timezone = new \DateTimeZone($logTimeZone);
} catch (\Exception $e) {