From 022852b0c871dbe2e97a8f3d5964a4ac1f23ec79 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Fri, 31 Mar 2017 14:20:46 +0300 Subject: [PATCH] Track time in send-invoices log --- app/Console/Commands/SendRecurringInvoices.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/SendRecurringInvoices.php b/app/Console/Commands/SendRecurringInvoices.php index 4ba30797bc14..0a62ca626fbf 100644 --- a/app/Console/Commands/SendRecurringInvoices.php +++ b/app/Console/Commands/SendRecurringInvoices.php @@ -58,7 +58,7 @@ class SendRecurringInvoices extends Command public function fire() { - $this->info(date('Y-m-d').' Running SendRecurringInvoices...'); + $this->info(date('Y-m-d H:i:s') . ' Running SendRecurringInvoices...'); $today = new DateTime(); // check for counter resets @@ -114,7 +114,7 @@ class SendRecurringInvoices extends Command } } - $this->info('Done'); + $this->info(date('Y-m-d H:i:s') . ' Done'); } /**