mirror of
https://github.com/LukeHagar/slinky.git
synced 2025-12-10 04:21:31 +00:00
Update progress logging format in check.go to use "::progress::" instead of "::notice::" for better clarity in output.
This commit is contained in:
@@ -195,7 +195,7 @@ func init() {
|
|||||||
pct := (total * 100) / totalURLs
|
pct := (total * 100) / totalURLs
|
||||||
for pct >= lastPctLogged+5 && lastPctLogged < 100 {
|
for pct >= lastPctLogged+5 && lastPctLogged < 100 {
|
||||||
lastPctLogged += 5
|
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.
|
// Emit GitHub Actions debug log for each URL.
|
||||||
|
|||||||
Reference in New Issue
Block a user