File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 10
10
namespace Framework \Log \Debug ;
11
11
12
12
use Framework \Debug \Collector ;
13
+ use Framework \Debug \Debugger ;
13
14
use Framework \Log \Logger ;
14
15
use Framework \Log \LogLevel ;
15
16
@@ -105,7 +106,7 @@ protected function renderLogs() : string
105
106
<th colspan="2">Level</th>
106
107
<th>Message</th>
107
108
<th>Written</th>
108
- <th title="Seconds ">Time to Log</th>
109
+ <th title="Milliseconds ">Time to Log</th>
109
110
</tr>
110
111
</thead>
111
112
<tbody>
@@ -121,7 +122,7 @@ protected function renderLogs() : string
121
122
<pre><code class="language-log"><?= \htmlentities ($ data ['message ' ]) ?> </code></pre>
122
123
</td>
123
124
<td><?= $ data ['written ' ] ? 'Yes ' : 'No ' ?> </td>
124
- <td><?= \round ($ data ['end ' ] - $ data ['start ' ], 6 ) ?> </td>
125
+ <td><?= Debugger:: roundSecondsToMilliseconds ($ data ['end ' ] - $ data ['start ' ]) ?> </td>
125
126
</tr>
126
127
<?php endforeach ?>
127
128
</tbody>
You can’t perform that action at this time.
0 commit comments