Skip to content

Commit

Permalink
Change log level from debug to info for sold listing notification
Browse files Browse the repository at this point in the history
  • Loading branch information
perfectly-preserved-pie committed Nov 13, 2024
1 parent 15b27b9 commit ee28e14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/webscraping_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def check_expired_listing_theagency(listing_url: str, mls_number: str, board_cod
data = response.json()
is_sold = data.get('IsSold', False)
if is_sold:
logger.debug(f"Listing {mls_number} has been sold.")
logger.info(f"Listing {mls_number} has been sold.")
return is_sold
except requests.HTTPError as e:
logger.error(f"HTTP error occurred while checking if the listing for MLS {mls_number} has been sold: {e}")
Expand Down

0 comments on commit ee28e14

Please sign in to comment.