From d11ffbf4246d6c1ca99493af9073335202efc418 Mon Sep 17 00:00:00 2001 From: "Abdulmhsen B. A. A" Date: Sun, 5 Jun 2022 23:46:17 +0300 Subject: [PATCH] Update log prune ttl format. --- src/Commands/Config/PruneCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/Config/PruneCommand.php b/src/Commands/Config/PruneCommand.php index d29a715c..e1b3f3b2 100644 --- a/src/Commands/Config/PruneCommand.php +++ b/src/Commands/Config/PruneCommand.php @@ -101,7 +101,7 @@ final class PruneCommand extends Command if ($file->getMTime() > $expiresAt) { $this->logger->debug('Path Not yet expired.', [ 'path' => after($file->getRealPath(), Config::get('tmpDir')), - 'ttl' => $file->getMTime() - $expiresAt, + 'ttl' => number_format($file->getMTime() - $expiresAt), ]); continue; }