mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 23:24:07 -06:00
Add extra logging for common error on demo site [skip ci]
This commit is contained in:
parent
89be30c4b9
commit
d6298d9f05
@ -113,7 +113,8 @@ class TransactionFactory
|
||||
$destinationAccount = $this->findAccount($destinationType, $data['destination_id'], $data['destination_name']);
|
||||
|
||||
if (null === $sourceAccount || null === $destinationAccount) {
|
||||
throw new FireflyException('Could not determine source or destination account.', $data);
|
||||
Log::error('Info about source/dest:', $data);
|
||||
throw new FireflyException('Could not determine source or destination account.');
|
||||
}
|
||||
|
||||
Log::debug(sprintf('Source type is "%s", destination type is "%s"', $sourceAccount->accountType->type, $destinationAccount->accountType->type));
|
||||
|
Loading…
Reference in New Issue
Block a user