Skip to content

Commit c0c12b9

Browse files
authored
[CHIA-1437]: Reduce level log spam when downloading DAT files (#18610)
* Reduce level log spam when downloading files * black fix * Just change info->debug
1 parent 3ca9b5e commit c0c12b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chia/data_layer/download_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,4 +377,4 @@ async def http_download(
377377
new_percentage = f"{progress_byte / size:.0%}"
378378
if new_percentage != progress_percentage:
379379
progress_percentage = new_percentage
380-
log.info(f"Downloading delta file {filename}. {progress_percentage} of {size} bytes.")
380+
log.debug(f"Downloading delta file {filename}. {progress_percentage} of {size} bytes.")

0 commit comments

Comments
 (0)