Merge pull request #149 from joaosantos81/patch-2

MINOR: log events in 24 hour format rather than 12 hour.
This commit is contained in:
Will Rossiter 2012-01-03 15:22:39 -08:00
commit 7d70fa7705

View File

@ -35,7 +35,7 @@ class SS_LogErrorFileFormatter implements Zend_Log_Formatter_Interface {
$urlSuffix = " (http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI])";
}
return '[' . date('d-M-Y h:i:s') . "] $errtype at $relfile line $errline: $errstr$urlSuffix" . PHP_EOL;
return '[' . date('d-M-Y H:i:s') . "] $errtype at $relfile line $errline: $errstr$urlSuffix" . PHP_EOL;
}
}