Skip to content
Snippets Groups Projects
Verified Commit 67211adb authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

pubdev.lister: Decrease verbosity

This matches other lister verbosity.

Related to T4517
parent c819cc23
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ class PubDevLister(StatelessLister[PubDevListerPage]):
@throttling_retry(before_sleep=before_sleep_log(logger, logging.WARNING))
def page_request(self, url: str, params: Dict[str, Any]) -> requests.Response:
logger.info("Fetching URL %s with params %s", url, params)
logger.debug("Fetching URL %s with params %s", url, params)
response = self.session.get(url, params=params)
if response.status_code != 200:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment