Skip to content

Commit

Permalink
Merge pull request #149 from joaosantos81/patch-2
Browse files Browse the repository at this point in the history
MINOR: log events in 24 hour format rather than 12 hour.
  • Loading branch information
wilr committed Jan 3, 2012
2 parents e4d65ab + 889bcf7 commit 7d70fa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/LogErrorFileFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function format($event) {
$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;
}

}

0 comments on commit 7d70fa7

Please sign in to comment.