We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 839b7d3 commit 0dd241eCopy full SHA for 0dd241e
evaluation/feature.go
@@ -3,13 +3,10 @@ package evaluation
3
import (
4
"encoding/json"
5
"fmt"
6
-
7
- "github.com/labstack/gommon/log"
8
9
- "github.com/drone/ff-golang-server-sdk/types"
10
11
"reflect"
12
"strconv"
+
+ "github.com/drone/ff-golang-server-sdk/types"
13
)
14
15
const (
@@ -89,8 +86,7 @@ func (c Clauses) Evaluate(target *Target, segments Segments) bool {
89
86
// operator should be evaluated based on type of attribute
90
87
op, err := target.GetOperator(clause.Attribute)
91
88
if err != nil {
92
- log.Warn(err)
93
- //return false
+ fmt.Print(err)
94
}
95
if !clause.Evaluate(target, segments, op) {
96
return false
0 commit comments