ref: ab174c473618dd3743881cf44e02c2db4d1ecd5f
dir: /object/store/packed/internal/ingest/progress_write.go/
package ingest
import "codeberg.org/lindenii/furgit/internal/utils"
func writeProgressf(state *ingestState, format string, args ...any) {
utils.BestEffortFprintf(state.opts.Progress, format, args...)
if state.opts.Progress != nil {
_ = state.opts.Progress.Flush()
}
}