We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60f4e82 commit f9fc0e5Copy full SHA for f9fc0e5
1 file changed
asyncio_tutorial/fetcher.py
@@ -26,8 +26,8 @@ async def fetch_and_save_url(
26
.replace("; charset=UTF-8", "")
27
.replace("text/", "")
28
)
29
- LOGGER.info(f"Successfully fetched URL {i + 1} of {total_count}: {url}")
30
await write_file(url, body, filetype, directory)
+ LOGGER.info(f"Fetched URL {i + 1} of {total_count}: {url}")
31
except InvalidURL as e:
32
LOGGER.error(f"Unable to fetch invalid URL `{url}`: {e}")
33
except ClientError as e:
0 commit comments