Track time in send-invoices log

This commit is contained in:
Hillel Coren 2017-03-31 14:20:46 +03:00
parent 7a4513da7d
commit 022852b0c8

View File

@ -58,7 +58,7 @@ class SendRecurringInvoices extends Command
public function fire() 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(); $today = new DateTime();
// check for counter resets // 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');
} }
/** /**