From f7baf5b2fd7cfc69b808a1ee1b929a23462b6bdc Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 11 May 2025 07:11:00 +0200 Subject: [PATCH] Better debug info --- app/Console/Commands/Correction/CorrectsUnevenAmount.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/Correction/CorrectsUnevenAmount.php b/app/Console/Commands/Correction/CorrectsUnevenAmount.php index 6739139ce8..1fffee3fe3 100644 --- a/app/Console/Commands/Correction/CorrectsUnevenAmount.php +++ b/app/Console/Commands/Correction/CorrectsUnevenAmount.php @@ -211,7 +211,7 @@ class CorrectsUnevenAmount extends Command // may still be able to salvage this journal if it is a transfer with foreign currency info if ($this->isForeignCurrencyTransfer($journal) || $this->isBetweenAssetAndLiability($journal)) { - Log::debug(sprintf('Can skip foreign currency transfer #%d.', $journal->id)); + Log::debug(sprintf('Can skip foreign currency transfer / asset+liability transaction #%d.', $journal->id)); return; }