From 55acc5e4874e541aad8aa7a5af3702bfb5ce4f29 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sun, 13 Sep 2020 21:38:58 -0500 Subject: [PATCH] added log info for updating rental prices --- app/Library/Moons/MoonCalc.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app/Library/Moons/MoonCalc.php b/app/Library/Moons/MoonCalc.php index b62290491..2fe2e93d0 100644 --- a/app/Library/Moons/MoonCalc.php +++ b/app/Library/Moons/MoonCalc.php @@ -79,9 +79,6 @@ class MoonCalc { //Calculate the rental price. Refined rate is already included in the price from rental composition $rentalPrice['alliance'] = $totalPriceMined * ($config[0]->RentalTax / 100.00); $rentalPrice['outofalliance'] = $totalPriceMined * ($config[0]->AllyRentalTax / 100.00); - - Log::info('Alliance Rental Price: ' . number_format($rentalPrice['alliance'], "0", ".", ",")); - Log::info('Out of Alliance Rental Price: ' . number_format($rentalPrice['outofalliance'], "0", ".", ",")); //Return the rental price to the caller return $rentalPrice; @@ -390,7 +387,7 @@ class MoonCalc { foreach($ores as $key => $value) { if(strtolower($key) == strtolower($ore)) { - Log::info('Found a Moon Ore: ' . $key); + Log::info('Found a Moon Ore Type: ' . $value); return $value; } }