10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d94c4b4 commit a0ad2d0Copy full SHA for a0ad2d0
src/Symfony/Component/ErrorRenderer/Resources/views/logs.html.php
@@ -22,7 +22,7 @@
22
<tr class="status-<?= $status; ?>" data-filter-level="<?= strtolower($this->escape($log['priorityName'])); ?>"<?php if ($channelIsDefined) { ?> data-filter-channel="<?= $this->escape($log['channel']); ?>"<?php } ?>
23
<td class="text-small" nowrap>
24
<span class="colored text-bold"><?= $this->escape($log['priorityName']); ?></span>
25
- <span class="text-muted newline"><?= (new \DateTime($log['timestamp']))->format('H:i:s'); ?></span>
+ <span class="text-muted newline"><?= date('H:i:s', $log['timestamp']); ?></span>
26
</td>
27
<?php if ($channelIsDefined) { ?>
28
<td class="text-small text-bold nowrap">
0 commit comments