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 89ed457 commit 3efbda9Copy full SHA for 3efbda9
pkg/router/template/router.go
@@ -208,10 +208,10 @@ func matchValues(s string, allowedValues ...string) bool {
208
}
209
210
func matchPattern(pattern, s string) bool {
211
- glog.V(4).Infof("matchPattern called with %s and %s", pattern, s)
+ glog.V(5).Infof("matchPattern called with %s and %s", pattern, s)
212
status, err := regexp.MatchString("^("+pattern+")$", s)
213
if err == nil {
214
- glog.V(4).Infof("matchPattern returning status: %v", status)
+ glog.V(5).Infof("matchPattern returning status: %v", status)
215
return status
216
217
glog.Errorf("Error with regex pattern in call to matchPattern: %v", err)
0 commit comments