From 0b5f8a55616552cfd38141526be3a8bd1597979f Mon Sep 17 00:00:00 2001 From: Olai Date: Wed, 17 Jan 2024 13:08:22 +0100 Subject: [PATCH] Removed Debugging Removed debugging prints --- Downloader.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Downloader.py b/Downloader.py index 51ecbcf..15d3537 100644 --- a/Downloader.py +++ b/Downloader.py @@ -144,11 +144,11 @@ async def main(): max_workers = int(config['Threads'].get('max_workers', fallback=cpu_threads)) if max_workers == 0: - print(f"Using all available CPU threads: {cpu_threads}") + # print(f"Using all available CPU threads: {cpu_threads}") max_workers = None # Set to None for ThreadPoolExecutor to use all available threads else: - print(f"Number of CPU threads: {cpu_threads}") - print(f"Max workers for ThreadPoolExecutor: {max_workers}") + # print(f"Number of CPU threads: {cpu_threads}") + # print(f"Max workers for ThreadPoolExecutor: {max_workers}") async with aiohttp.ClientSession() as session: with ThreadPoolExecutor(max_workers=max_workers) as executor: