Remove various logging.

This commit is contained in:
James Cole
2023-01-11 17:14:35 +01:00
parent 3be4c07848
commit bb6cbe884e
3 changed files with 9 additions and 9 deletions

View File

@@ -354,7 +354,7 @@ class Steam
$number = sprintf('%.24f', $number);
}
Log::debug(sprintf('Trying bcround("%s",%d)', $number, $precision));
// Log::debug(sprintf('Trying bcround("%s",%d)', $number, $precision));
if (str_contains($number, '.')) {
if ($number[0] !== '-') {
return bcadd($number, '0.'.str_repeat('0', $precision).'5', $precision);