From 4393475af37ec94e270f171df5476d5925c04458 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 27 Mar 2015 09:22:08 +0100 Subject: [PATCH] Remove debug. --- app/Repositories/Journal/JournalRepository.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Repositories/Journal/JournalRepository.php b/app/Repositories/Journal/JournalRepository.php index 484aca23f3..be17996e38 100644 --- a/app/Repositories/Journal/JournalRepository.php +++ b/app/Repositories/Journal/JournalRepository.php @@ -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':