summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahooinc.com>2021-10-18 07:29:09 +0000
committerArne H Juul <arnej@yahooinc.com>2021-10-18 07:29:09 +0000
commit4ca282ff86bf6a23341dbac69436a1801c824e7f (patch)
tree0ee51379d0ec6bc7b31bbf44e00eca228283aaa6 /searchcore
parentc94e21087778f47afe90d277ef95d01956e74dfc (diff)
Stop reporting back full dump of grouping.
* the QRS already knows what "grouping number 0" means, so no need to report back the full, detailed dump.
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/grouping/groupingmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/vespa/searchcore/grouping/groupingmanager.cpp b/searchcore/src/vespa/searchcore/grouping/groupingmanager.cpp
index f5dac65dfc4..94a3ff0f70b 100644
--- a/searchcore/src/vespa/searchcore/grouping/groupingmanager.cpp
+++ b/searchcore/src/vespa/searchcore/grouping/groupingmanager.cpp
@@ -60,7 +60,7 @@ GroupingManager::init(const IAttributeContext &attrCtx)
grouping.configureStaticStuff(stuff);
list.push_back(groupingList[i]);
} catch (const std::exception & e) {
- Issue::report("Could not locate attribute for grouping number %ld : %s. Ignoring grouping '%s'", i, e.what(), grouping.asString().c_str());
+ Issue::report("Could not locate attribute for grouping number %ld : %s. Ignoring this grouping.", i, e.what());
}
}
std::swap(list, groupingList);