Update progress logging format in check.go to use "::progress::" instead of "::notice::" for better clarity in output.

This commit is contained in:
Luke Hagar
2025-09-12 21:01:16 +00:00
parent 54d7797089
commit 7c52360fbe

View File

@@ -195,7 +195,7 @@ func init() {
pct := (total * 100) / totalURLs
for pct >= lastPctLogged+5 && lastPctLogged < 100 {
lastPctLogged += 5
fmt.Printf("::notice:: Checking progress: %d%% (%d/%d)\n", lastPctLogged, total, totalURLs)
fmt.Printf("::progress:: %d%% (%d/%d)\n", lastPctLogged, total, totalURLs)
}
}
// Emit GitHub Actions debug log for each URL.