aboutsummaryrefslogtreecommitdiffstats
path: root/document
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahooinc.com>2022-04-22 08:56:40 +0000
committerArne H Juul <arnej@yahooinc.com>2022-04-22 08:56:40 +0000
commit1937b5bd5e7ce810ba25d33ef26025a6d331cefa (patch)
tree9aa7af16bceb1597a52d3a012e8127a35115ebe1 /document
parent8eb766fa049f5261e450863f532f5cd53072bd26 (diff)
correct level for debug logging
Diffstat (limited to 'document')
-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);
}