summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-04-22 10:59:25 +0200
committerGitHub <noreply@github.com>2022-04-22 10:59:25 +0200
commit5e77ba78f83c8f9132f604614b5d7b1714f867a7 (patch)
tree5283418b6856f304fc7c88f371cbde234cce3ef2
parent06cef501fed9ec89b01e25676a4c1c2e1c9184b7 (diff)
parent1937b5bd5e7ce810ba25d33ef26025a6d331cefa (diff)
Merge pull request #22214 from vespa-engine/arnej/doctypes-debug-logging
correct level for debug logging
-rw-r--r--document/src/vespa/document/repo/documenttyperepo.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/document/src/vespa/document/repo/documenttyperepo.cpp b/document/src/vespa/document/repo/documenttyperepo.cpp
index 147e79bbf32..488dfea2fd7 100644
--- a/document/src/vespa/document/repo/documenttyperepo.cpp
+++ b/document/src/vespa/document/repo/documenttyperepo.cpp
@@ -751,7 +751,7 @@ private:
}
throw IllegalArgumentException("no progress");
}
- LOG(info, "retry complex types, %zd missing", _needed_idx_set.size());
+ LOG(debug, "retry complex types, %zd missing", _needed_idx_set.size());
}
}
@@ -872,7 +872,7 @@ private:
if (! succ) {
throw IllegalArgumentException("duplicate type idx");
}
- LOG(info, "ensure indexes: add %d", idx);
+ LOG(debug, "ensure indexes: add %d", idx);
}
void check(int idx) {
if (! _set.contains(idx)) {
@@ -885,7 +885,7 @@ private:
void findNeeded() {
EnsureIndexes idx_set;
for (const auto & docT : _input) {
- LOG(info, "doc %s", docT.name.c_str());
+ LOG(debug, "doc %s", docT.name.c_str());
idx_set.add(docT.idx);
for (const auto & structT : docT.structtype) {
idx_set.add(structT.idx);
@@ -984,7 +984,7 @@ public:
ApplyNewDoctypeConfig::~ApplyNewDoctypeConfig() = default;
void configureDocTypes(const DocumenttypesConfig::DoctypeVector &t, DocumentTypeMap &type_map) {
- LOG(info, "applying new doc type config");
+ LOG(debug, "applying new doc type config");
ApplyNewDoctypeConfig(t, type_map);
}