Skip to content

Commit e8c6ae6

Browse files
authored
Merge pull request #35335 from vespa-engine/hmusum/log-at-lower-level
Log retries of docum fetching at a lower level
2 parents 35b7802 + 3449e35 commit e8c6ae6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

container-search/src/main/java/com/yahoo/search/dispatch/rpc/RpcProtobufFillInvoker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ private void maybeRetry(List<FastHit> skippedHits, Result result, String summary
329329
// no retry if there is only one node
330330
if (retryMap.size() > 0) {
331331
if (shouldLogRetry()) {
332-
log.log(Level.WARNING, "Retry docsum fetch for " + numSkipped + " hits (" + numOkFilledHits + " ok hits)");
332+
log.log(Level.INFO, "Retry docsum fetch for " + numSkipped + " hits (" + numOkFilledHits + " ok hits)");
333333
}
334334
summaryNeedsQuery = true;
335335
sendFillRequestByNode(result, summaryClass, retryMap);

0 commit comments

Comments
 (0)