Removed debug messages.

This commit is contained in:
James Cole 2014-11-26 17:19:59 +01:00
parent beb8a461cf
commit 1e7ecbdf9d

View File

@ -199,7 +199,6 @@ class AccountController extends BaseController
$accounts->each(
function (Account $account) {
if (Cache::has('account.' . $account->id . '.lastActivityDate')) {
\Log::debug('Cache has latest activity date for ' . $account->name . ', and it is: ' . \Cache::get('account.' . $account->id . '.lastActivityDate'));
$account->lastActionDate = Cache::get('account.' . $account->id . '.lastActivityDate');
} else {
$transaction = $account->transactions()->orderBy('updated_at', 'DESC')->first();