From 30e859b552f4ccb10b9fa7b53de47866a3f7c35c Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sun, 13 Sep 2020 22:47:11 -0500 Subject: [PATCH] moon calc --- app/Library/Moons/MoonCalc.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/app/Library/Moons/MoonCalc.php b/app/Library/Moons/MoonCalc.php index 44dc512c7..1ac85d4c6 100644 --- a/app/Library/Moons/MoonCalc.php +++ b/app/Library/Moons/MoonCalc.php @@ -55,9 +55,6 @@ class MoonCalc { $totalPriceMined += $this->CalcMoonPrice($secondOre, $secondPerc); $totalPriceMined += $this->CalcMoonPrice($thirdOre, $thirdPerc); $totalPriceMined += $this->CalcMoonPrice($fourthOre, $fourthPerc); - - //Just some logging information - Log::info('Total Moon Price calculated to: ' . number_format($totalPriceMined, "2", ".", ",")); //Return the rental price to the caller return $totalPriceMined; @@ -81,9 +78,6 @@ class MoonCalc { $totalPrice += $this->CalcRentalPrice($secondOre, $secondPerc); $totalPrice += $this->CalcRentalPrice($thirdOre, $thirdPerc); $totalPrice += $this->CalcRentalPrice($fourthOre, $fourthPerc); - - //Just some logging information - Log::info('Total Rental Price calculated to: ' . number_format($totalPriceMined, "2", ".", ",")); //Calculate the rental price. Refined rate is already included in the price from rental composition $rentalPrice['alliance'] = $totalPrice * ($config[0]->RentalTax / 100.00); @@ -366,10 +360,6 @@ class MoonCalc { //A 50% discount is given to Gas ores as they aren't worth much currently in the market. if($calculatePrice == 'Gas') { $total = ($units * $unitPrice) / 2.00; - Log::info('Moon Ore: ' . $ore); - Log::info('Calculate price found a Gas. It was named ' . $ore . '.'); - Log::info('Price was: ' . number_format(($units * $unitPrice), "2", ".", ",")); - Log::info('New price is: ' . number_format($total, "2", ".", ",")); } else { $total = $units * $unitPrice; }