asdf
All checks were successful
Deploy App to Docker / deploy (push) Successful in 42s

This commit is contained in:
zman 2025-04-11 13:32:35 -04:00
parent c234285788
commit 3601bcc81b

View File

@ -223,6 +223,21 @@ class PricingService:
# Convert back to float for dataframe
row['new_price'] = float(new_price)
logger.debug(f"""
card: {row['product_name']}
TCGplayer Id: {row['tcgplayer_id']}
Algorithm: {ACTIVE_PRICING_ALGORITHIM}
TCG Low: {tcg_low}
TCG Low Shipping: {tcg_low_shipping}
TCG Market Price: {tcg_market_price}
Current Price: {current_price}
Total Quantity: {total_quantity}
Added Quantity: {added_quantity}
Quantity: {quantity}
TCG Compare Price: {tcg_compare_price}
New Price: {new_price}
""")
return row