diff options
author | Hiroshi Yokoi <yokoi.hiroshi@po.ntts.co.jp> | 2015-10-20 11:35:17 +0900 |
---|---|---|
committer | Hiroshi Yokoi <yokoi.hiroshi@po.ntts.co.jp> | 2015-10-20 11:35:17 +0900 |
commit | 5af15b1d9c7ef62039356de9874b6d68658ec024 (patch) | |
tree | 72331320f4751e615cb6fb4b77ac89e7350ca587 /table/policy.go | |
parent | 037da29977acad69ecb167c2a163fcb5a4005811 (diff) |
policy: remove debug log
Diffstat (limited to 'table/policy.go')
-rw-r--r-- | table/policy.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/table/policy.go b/table/policy.go index 92273467..809bb984 100644 --- a/table/policy.go +++ b/table/policy.go @@ -1878,7 +1878,6 @@ type Statement struct { // evaluate each condition in the statement according to MatchSetOptions func (s *Statement) Evaluate(p *Path) bool { for _, c := range s.Conditions { - fmt.Printf("%v, %t\n", c, c) if !c.Evaluate(p) { return false } |