mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-16 17:33:45 +00:00
Clean up some logs.
This commit is contained in:
@@ -114,7 +114,7 @@ class AccountController extends Controller
|
|||||||
|
|
||||||
// loop the accounts, then check for balance and currency info.
|
// loop the accounts, then check for balance and currency info.
|
||||||
foreach ($accounts as $account) {
|
foreach ($accounts as $account) {
|
||||||
Log::debug(sprintf('[a] Now in account #%d ("%s")', $account->id, $account->name));
|
// Log::debug(sprintf('[a] Now in account #%d ("%s")', $account->id, $account->name));
|
||||||
$expenses = $endBalances[$account->id] ?? false;
|
$expenses = $endBalances[$account->id] ?? false;
|
||||||
if (false === $expenses) {
|
if (false === $expenses) {
|
||||||
Log::error(sprintf('Found no end balance for account #%d', $account->id));
|
Log::error(sprintf('Found no end balance for account #%d', $account->id));
|
||||||
@@ -573,7 +573,7 @@ class AccountController extends Controller
|
|||||||
|
|
||||||
// loop the accounts, then check for balance and currency info.
|
// loop the accounts, then check for balance and currency info.
|
||||||
foreach ($accounts as $account) {
|
foreach ($accounts as $account) {
|
||||||
Log::debug(sprintf('[b] Now in account #%d ("%s")', $account->id, $account->name));
|
// Log::debug(sprintf('[b] Now in account #%d ("%s")', $account->id, $account->name));
|
||||||
$expenses = $endBalances[$account->id] ?? false;
|
$expenses = $endBalances[$account->id] ?? false;
|
||||||
if (false === $expenses) {
|
if (false === $expenses) {
|
||||||
Log::error(sprintf('Found no end balance for account #%d', $account->id));
|
Log::error(sprintf('Found no end balance for account #%d', $account->id));
|
||||||
|
Reference in New Issue
Block a user