additional consistency changes

This commit is contained in:
Aaron Meihm 2015-07-07 05:51:55 -05:00
Родитель 95e538b7c4
Коммит 8fb583d786
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -12,7 +12,7 @@ type EVRTest struct {
}
func (e *EVRTest) evaluate(c evaluationCriteria) (ret evaluationResult) {
debugPrint("evaluate(): evr %v \"%v\"\n", e.Operation, e.Value)
debugPrint("evaluate(): evr %v \"%v\", %v \"%v\"\n", c.Identifier, c.TestValue, e.Operation, e.Value)
evrop := evrLookupOperation(e.Operation)
if evrop == EVROP_UNKNOWN {
return

Просмотреть файл

@ -15,7 +15,7 @@ type Regexp struct {
}
func (r *Regexp) evaluate(c evaluationCriteria) (ret evaluationResult) {
debugPrint("evaluate(): regexp \"%v\", %v \"%v\"\n", r.Value, c.Identifier, c.TestValue)
debugPrint("evaluate(): regexp %v \"%v\", \"%v\"\n", c.Identifier, c.TestValue, r.Value)
re, err := regexp.Compile(r.Value)
if err != nil {
return