Skip to content

Commit

Permalink
refactor: lower dl verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
dpastoor committed Jun 3, 2022
1 parent 454b8b6 commit 2eb10a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/gh/assets.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func (wc *WriteCounter) Write(p []byte) (int, error) {
n := len(p)
wc.Written += n
wc.nWrites++
if wc.progress && wc.nWrites%200 == 0 {
if wc.progress && wc.nWrites%300 == 0 {
log.Infof("downloading quarto version %s ... (%s/%s)", wc.Label,
humanize.Bytes(uint64(wc.Written)),
humanize.Bytes(uint64(wc.Total)))
Expand Down

0 comments on commit 2eb10a2

Please sign in to comment.