summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorLester Solbakken <lesters@oath.com>2018-06-14 13:22:21 +0200
committerLester Solbakken <lesters@oath.com>2018-06-14 13:22:21 +0200
commit3720104a3ae7e7ba38c34e8eae85a25ceeae74cc (patch)
treed3426d29bde09c8ea725f38a8e3da71e6fa2827b /searchlib
parent68c62a5d2a1b35c3c2859cd5838928c371127f27 (diff)
Remove unnecessary logging in unit test
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/tests/features/prod_features.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/searchlib/src/tests/features/prod_features.cpp b/searchlib/src/tests/features/prod_features.cpp
index 7f22d779a9e..a07785398bf 100644
--- a/searchlib/src/tests/features/prod_features.cpp
+++ b/searchlib/src/tests/features/prod_features.cpp
@@ -1784,12 +1784,10 @@ Test::testRandomNormal()
feature_t rn1 = rr1.getScore("randomNormal");
feature_t rn2 = rr2.getScore("randomNormal");
- LOG(info, "randomNormal: %f - %f", rn1, rn2);
ASSERT_NOT_EQUAL(rn1, rn2);
feature_t rnm1 = rr1.getScore("randomNormal.match");
feature_t rnm2 = rr2.getScore("randomNormal.match");
- LOG(info, "randomNormalMatch: %f - %f", rnm1, rnm2);
ASSERT_EQUAL(rnm1, rnm2);
}
}