You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
373 B
18 lines
373 B
package output
|
|
|
|
import (
|
|
"context"
|
|
|
|
"gitoa.ru/go-4devs/console/output/label"
|
|
"gitoa.ru/go-4devs/console/output/verbosity"
|
|
)
|
|
|
|
func Verbosity(out Output, verb verbosity.Verbosity) Output {
|
|
return func(ctx context.Context, v verbosity.Verbosity, msg string, kv ...label.KeyValue) (int, error) {
|
|
if verb >= v {
|
|
return out(ctx, v, msg, kv...)
|
|
}
|
|
|
|
return 0, nil
|
|
}
|
|
}
|
|
|