diff --git a/earthaccess/utils/_search.py b/earthaccess/utils/_search.py index 28090ea6..4466f6dd 100644 --- a/earthaccess/utils/_search.py +++ b/earthaccess/utils/_search.py @@ -1,12 +1,8 @@ -import logging - import requests from typing_extensions import Any, List, Union from cmr import CollectionQuery, GranuleQuery, ServiceQuery -logger = logging.getLogger(__name__) - def get_results( session: requests.Session, @@ -47,7 +43,6 @@ def get_results( except requests.exceptions.HTTPError as ex: raise RuntimeError(ex.response.text) from ex - logger.info("RESPONSE: %s", response.json()) latest = response.json()["items"] results.extend(latest)