Remove debug.

This commit is contained in:
James Cole 2015-03-27 09:22:08 +01:00
parent 3fc560597c
commit 4393475af3

View File

@ -154,7 +154,6 @@ class JournalRepository implements JournalRepositoryInterface
$toType = AccountType::where('type', 'Cash account')->first();
$to = Account::firstOrCreate(['user_id' => $data['user'], 'account_type_id' => $toType->id, 'name' => 'Cash account', 'active' => 1]);
}
Log::error('Could not store TO account for Withdrawal (Expense account) because: ' .$to->getErrors()->toJson());
break;
case 'Deposit':