arch: Set log level to debug for URL requests
This commit is contained in:
parent
a55f171ed5
commit
f1a1b30fd1
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ class ArchLister(StatelessLister[ArchListerPage]):
|
|||
@throttling_retry(before_sleep=before_sleep_log(logger, logging.WARNING))
|
||||
def request_get(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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue