|
|
@@ -50,7 +50,12 @@ class FilesGarbageCollector extends BaseCronJob
|
|
|
if (($total - $i) === 50) {
|
|
|
$this->ui->print(' (...)');
|
|
|
}
|
|
|
- $this->ui->print(' * '.$file->getSlug().' (Host: '.$file->getHost()->value.' | Status: '.$file->getStatus()->value.')');
|
|
|
+
|
|
|
+ $fileExists = $this->storage->exists($file);
|
|
|
+
|
|
|
+ $this->ui->print(
|
|
|
+ ' * '.$file->getSlug().' (Status: '.$file->getStatus()->value.' - Exists: '.$fileExists ? 'Yes' : 'No'.')'
|
|
|
+ );
|
|
|
}
|
|
|
}
|
|
|
|