From 2290f07351f3f0ba2225caf573894e9ed20ca221 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 6 Jun 2025 17:54:31 -0700 Subject: [PATCH] Update locationdata.py --- modules/locationdata.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/locationdata.py b/modules/locationdata.py index 6f0acca..4802486 100644 --- a/modules/locationdata.py +++ b/modules/locationdata.py @@ -645,10 +645,10 @@ def get_volcano_usgs(lat=0, lon=0): try: volcano_data = requests.get(usgs_volcano_url, timeout=urlTimeoutSeconds) if not volcano_data.ok: - logger.warning("System: USGS fetching volcano alerts from USGS") + logger.warning("System: Issue with fetching volcano alerts from USGS") return ERROR_FETCHING_DATA except (requests.exceptions.RequestException): - logger.warning("System: USGS fetching volcano alerts from USGS") + logger.warning("System: Issue with fetching volcano alerts from USGS") return ERROR_FETCHING_DATA volcano_json = volcano_data.json() # extract alerts from main feed