Update log prune ttl format.

This commit is contained in:
Abdulmhsen B. A. A
2022-06-05 23:46:17 +03:00
parent 9f200c2bf9
commit d11ffbf424

View File

@@ -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;
}