1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 05:32:39 +01:00

Add plan deadline logging

This commit is contained in:
Hillel Coren 2016-12-25 11:49:54 +02:00
parent 75fe14d295
commit 257a5688c7

View File

@ -192,7 +192,7 @@ class AccountController extends BaseController
$paymentDriver = $ninjaAccount->paymentDriver();
$paymentDriver->refundPayment($payment);
Session::flash('message', trans('texts.plan_refunded'));
\Log::info("Refunded Plan Payment: {$account->name} - {$user->email}");
\Log::info("Refunded Plan Payment: {$account->name} - {$user->email} - Deadline: {$refund_deadline->format('Y-m-d')}");
} else {
Session::flash('message', trans('texts.updated_plan'));
}