summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahooinc.com>2021-11-05 10:01:16 +0000
committerArne H Juul <arnej@yahooinc.com>2021-11-05 10:01:16 +0000
commit56a319c5962458fb7d396423fa0feae73d5dcd61 (patch)
tree7d3b193afeb85bd7189e038b7664491465ebc025 /searchlib
parente96ebc4ed250658efd7689f2826544e9342ab98c (diff)
remove leftover debug print
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/engine/proto_converter.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/searchlib/src/vespa/searchlib/engine/proto_converter.cpp b/searchlib/src/vespa/searchlib/engine/proto_converter.cpp
index cd25e48d7ad..663ed26541e 100644
--- a/searchlib/src/vespa/searchlib/engine/proto_converter.cpp
+++ b/searchlib/src/vespa/searchlib/engine/proto_converter.cpp
@@ -109,11 +109,6 @@ ProtoConverter::search_reply_to_proto(const SearchReply &reply, ProtoSearchReply
bool has_match_features = (num_match_features > 0 && reply.hits.size() > 0);
if (has_match_features) {
size_t num_match_feature_values = reply.match_features.values.size();
-
- fprintf(stderr, "reply with %zu hits has %zu match features, total %zu/%zu\n",
- reply.hits.size(), num_match_features,
- num_match_feature_values, reply.hits.size() * num_match_features);
-
assert(num_match_feature_values == reply.hits.size() * num_match_features);
for (const auto & name : reply.match_features.names) {
*proto.add_match_feature_names() = name;