From e468d5b892342994e0b9d22030c200c63cb9dbcb Mon Sep 17 00:00:00 2001 From: James Cole Date: Tue, 27 Dec 2022 13:02:17 +0100 Subject: [PATCH] Add some debug for https://github.com/firefly-iii/firefly-iii/issues/6743 --- app/Support/Steam.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Support/Steam.php b/app/Support/Steam.php index 622c445cad..9ddbd49e41 100644 --- a/app/Support/Steam.php +++ b/app/Support/Steam.php @@ -111,6 +111,7 @@ class Steam if('' === trim($number)) { return '0'; } + Log::debug(sprintf('Trying bcround("%",%d)', $number, $precision)); if (str_contains($number, '.')) { if ($number[0] !== '-') { return bcadd($number, '0.'.str_repeat('0', $precision).'5', $precision);