Skip to content

Commit

Permalink
Remove logging of response
Browse files Browse the repository at this point in the history
  • Loading branch information
nikki-t committed Jun 11, 2024
1 parent 61b2e04 commit 49fb87d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions earthaccess/utils/_search.py
Original file line number Diff line number Diff line change
@@ -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,
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 49fb87d

Please sign in to comment.