pubdev.lister: Decrease verbosity

This matches other lister verbosity.

Related to T4517
This commit is contained in:
Antoine R. Dumont (@ardumont) 2022-09-09 12:31:43 +02:00
parent c819cc237d
commit 67211adb60
No known key found for this signature in database
GPG key ID: 52E2E9840D10C3B8

View file

@ -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: