Laravel Vapor - Added comment

This commit is contained in:
Dillon Ngo
2024-05-25 02:02:52 +08:00
parent 3261693e8d
commit ca80a528a6
+1 -1
View File
@@ -79,7 +79,7 @@ class DeleteOrderCommand extends Command
$this->info(Carbon::now() . ' : ' . $text);
$filePath = storage_path('logs/delete-orders.log');
$filePath = storage_path('logs/delete-orders.log'); //cief todo: should map to the equivalent in AWS S3 bucket
$textToAppend = Carbon::now()->format('[Y-m-d H:i:s]') . ' ' . $text . PHP_EOL;
file_put_contents($filePath, $textToAppend, FILE_APPEND);
}