Skip to content

Commit

Permalink
Change a logging.warning into a logging.info
Browse files Browse the repository at this point in the history
  • Loading branch information
ptormene committed Sep 5, 2024
1 parent 307f0b4 commit 8ca9ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openquake/hazardlib/shakemap/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ def download_station_data_file(usgs_id):
try:
stations = read_usgs_stations_json(stations_json_str)
except LookupError as exc:
logging.warning(str(exc))
logging.info(str(exc))
else:
df = usgs_to_ecd_format(stations, exclude_imts=('SA(3.0)',))
if len(df) < 1:
Expand Down

0 comments on commit 8ca9ed7

Please sign in to comment.