1
0
mirror of https://github.com/beestat/app.git synced 2025-05-30 19:56:37 -04:00

Fixed API log time

This commit is contained in:
Jon Ziebell 2020-03-15 21:06:19 -04:00
parent 997dd6976e
commit e0f901e968

View File

@ -571,7 +571,7 @@ final class request {
// a new shutdown handler and no output will be sent to the client. I just // a new shutdown handler and no output will be sent to the client. I just
// have to handle all problems manually. // have to handle all problems manually.
try { try {
$this->total_time = round((microtime(true) - $this->begin_timestamp)); $this->total_time = (microtime(true) - $this->begin_timestamp);
// Fix the current working directory. See documentation on this class // Fix the current working directory. See documentation on this class
// variable for details. // variable for details.