fix debug message

piwheels-rpi-crypto
dgtlmoon 5 months ago
parent 37a021a701
commit 32579d7800

@ -172,7 +172,7 @@ class perform_site_check(difference_detection_processor):
# Minimum/maximum price limit # Minimum/maximum price limit
if update_obj.get('restock') and update_obj['restock'].get('price') and watch.get('price_change_min'): if update_obj.get('restock') and update_obj['restock'].get('price') and watch.get('price_change_min'):
logger.debug( logger.debug(
f"{uuid} - Change was detected, Has minimum price limit - 'price_change_max' is '{watch.get('price_change_max', '')}' 'price_change_min' is '{watch.get('price_change_min', '')}', price from website is '{update_obj['restock'].get('price', '')}'.") f"{uuid} - Change was detected, 'price_change_max' is '{watch.get('price_change_max', '')}' 'price_change_min' is '{watch.get('price_change_min', '')}', price from website is '{update_obj['restock'].get('price', '')}'.")
if update_obj['restock'].get('price'): if update_obj['restock'].get('price'):
min_limit = float(watch.get('price_change_min', 0)) min_limit = float(watch.get('price_change_min', 0))
max_limit = float(watch.get('price_change_max', float('inf'))) # Set to infinity if not provided max_limit = float(watch.get('price_change_max', float('inf'))) # Set to infinity if not provided

Loading…
Cancel
Save