From 4607466fb6b95795de2fb5717e031070207843a9 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 26 Jun 2025 06:36:15 +0200 Subject: [PATCH] Remove some debug logging. --- app/Support/Steam.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Support/Steam.php b/app/Support/Steam.php index 40f51114cb..d3254f7bbb 100644 --- a/app/Support/Steam.php +++ b/app/Support/Steam.php @@ -342,7 +342,7 @@ class Steam return $cache->get(); } - Log::debug(sprintf('finalAccountBalance(#%d, %s)', $account->id, $date->format('Y-m-d H:i:s'))); + //Log::debug(sprintf('finalAccountBalance(#%d, %s)', $account->id, $date->format('Y-m-d H:i:s'))); if (null === $convertToNative) { $convertToNative = Amount::convertToNative($account->user); } @@ -401,7 +401,7 @@ class Steam // Log::debug(sprintf('Virtual balance makes the (native) total %s', $return['balance'])); } $final = array_merge($return, $others); - Log::debug('Final balance is', $final); + //Log::debug('Final balance is', $final); $cache->store($final); return $final;