8ca7645026
This diff makes `measurex` depend on `measurexlite` rather than the other way around. While there, add unit tests. Closes https://github.com/ooni/probe/issues/2240
16 lines
357 B
Go
16 lines
357 B
Go
package measurex
|
|
|
|
import "github.com/ooni/probe-cli/v3/internal/measurexlite"
|
|
|
|
//
|
|
// Logger
|
|
//
|
|
// Code for logging
|
|
//
|
|
|
|
// NewOperationLogger is an alias for measurex.NewOperationLogger.
|
|
var NewOperationLogger = measurexlite.NewOperationLogger
|
|
|
|
// OperationLogger is an alias for measurex.OperationLogger.
|
|
type OperationLogger = measurexlite.OperationLogger
|