diff --git a/core/sig_utils.py b/core/sig_utils.py index c8cfd30..71bdd6c 100644 --- a/core/sig_utils.py +++ b/core/sig_utils.py @@ -42,7 +42,6 @@ def get_sig_ref_info(sig, sig_ref_id): sig_ref.latitude = data["latitude"] if "latitude" in data else None sig_ref.longitude = data["longitude"] if "longitude" in data else None elif sig.upper() == "SOTA": - print(sig_ref_id) data = SEMI_STATIC_URL_DATA_CACHE.get("https://api-db2.sota.org.uk/api/summits/" + sig_ref_id, headers=HTTP_HEADERS).json() if data: @@ -114,7 +113,7 @@ def get_sig_ref_info(sig, sig_ref_id): sig_ref.latitude = ll[0] sig_ref.longitude = ll[1] except: - logging.warn("Failed to look up sig_ref info for SIG " + sig + " ref " + sig_ref_id + ".") + logging.warn("Failed to look up sig_ref info for " + sig + " ref " + sig_ref_id + ".") return sig_ref