diff --git a/app/Console/Commands/CalculateSpace.php b/app/Console/Commands/CalculateSpace.php index 6397ae7..d434d37 100644 --- a/app/Console/Commands/CalculateSpace.php +++ b/app/Console/Commands/CalculateSpace.php @@ -49,7 +49,9 @@ class CalculateSpace extends Command $this->info("Calculate Day: ".$day); $galleries = Gallery::query()->get(); for ($i = 0; $i < 24; $i++) { + $this->info("Hour: ".$i); foreach ($galleries as $gallery) { + $this->info("Gallery: ".$gallery->name); //Get file size for that hour for that gallery $start = $day." ".$i.":00:00"; $end = $day." ".$i.":59:59";