ooni-probe-cli/internal/output/output.go
2018-03-22 15:22:29 +01:00

15 lines
259 B
Go

package output
import (
"github.com/apex/log"
)
// Progress logs a progress type event
func Progress(key string, perc float64, msg string) {
log.WithFields(log.Fields{
"type": "progress",
"key": key,
"percentage": perc,
}).Info(msg)
}