aboutsummaryrefslogtreecommitdiffstats
path: root/searchsummary
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-10-31 17:26:54 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2016-10-31 17:26:54 +0000
commit9994c5271bbcb68d2bd6475dc1d77a1e1963f5a7 (patch)
tree120470821aa2ab82cff6afc04c5bbadd6ff57d60 /searchsummary
parent3ace741802046c207ae523eec3d66914458b49ac (diff)
Explain that the error is actually expected during lidspace compaction and hence it is not an error.
Diffstat (limited to 'searchsummary')
-rw-r--r--searchsummary/src/vespa/searchsummary/docsummary/docsumwriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchsummary/src/vespa/searchsummary/docsummary/docsumwriter.cpp b/searchsummary/src/vespa/searchsummary/docsummary/docsumwriter.cpp
index 8f0df1915db..565ea78a0d9 100644
--- a/searchsummary/src/vespa/searchsummary/docsummary/docsumwriter.cpp
+++ b/searchsummary/src/vespa/searchsummary/docsummary/docsumwriter.cpp
@@ -354,7 +354,7 @@ DynamicDocsumWriter::insertDocsum(const ResolveClassInfo & rci,
// re-pack docsum blob
GeneralResult gres(rci.inputClass, 0, docid, 0);
if (! gres.inplaceUnpack(value)) {
- LOG(error, "Unpack failed: illegal docsum entry for document %d", docid);
+ LOG(debug, "Unpack failed: illegal docsum entry for document %d. This is expected during lidspace compaction.", docid);
topInserter.insertNix();
return;
}