From ca80a528a697c6cd58b692ced1c36d8468b80634 Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 25 May 2024 02:02:52 +0800 Subject: [PATCH] Laravel Vapor - Added comment --- app/Console/Commands/DeleteOrderCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/DeleteOrderCommand.php b/app/Console/Commands/DeleteOrderCommand.php index 9bcefe47..5dced1bb 100644 --- a/app/Console/Commands/DeleteOrderCommand.php +++ b/app/Console/Commands/DeleteOrderCommand.php @@ -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); }