summaryrefslogtreecommitdiffstats
path: root/document
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2020-04-24 13:12:46 +0200
committergjoranv <gv@verizonmedia.com>2020-04-25 02:22:55 +0200
commit25f832e613bb6087327c293b527d5445babb4319 (patch)
tree8197a5b331e845bfe91f006d9cfe8bec9a28170f /document
parent4e6825b47270804a36e7d76b873ca6c2fe360eac (diff)
LogLevel.DEBUG -> Level.FINE
Diffstat (limited to 'document')
-rw-r--r--document/src/main/java/com/yahoo/document/DocumentTypeManagerConfigurer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/document/src/main/java/com/yahoo/document/DocumentTypeManagerConfigurer.java b/document/src/main/java/com/yahoo/document/DocumentTypeManagerConfigurer.java
index d5da805dcdc..1d81d9e6e78 100644
--- a/document/src/main/java/com/yahoo/document/DocumentTypeManagerConfigurer.java
+++ b/document/src/main/java/com/yahoo/document/DocumentTypeManagerConfigurer.java
@@ -72,7 +72,7 @@ public class DocumentTypeManagerConfigurer implements ConfigSubscriber.SingleSub
setupAnnotationTypesWithoutPayloads(config, manager);
setupAnnotationRefTypes(config, manager);
- log.log(LogLevel.DEBUG, "Configuring document manager with " + config.datatype().size() + " data types.");
+ log.log(Level.FINE, "Configuring document manager with " + config.datatype().size() + " data types.");
ArrayList<DocumentmanagerConfig.Datatype> failed = new ArrayList<>();
failed.addAll(config.datatype());
while (!failed.isEmpty()) {
@@ -226,7 +226,7 @@ public class DocumentTypeManagerConfigurer implements ConfigSubscriber.SingleSub
DocumentTypeManager manager = configureNewManager(config);
int defaultTypeCount = new DocumentTypeManager().getDataTypes().size();
if (this.managerToConfigure.getDataTypes().size() != defaultTypeCount) {
- log.log(LogLevel.DEBUG, "Live document config overwritten with new config.");
+ log.log(Level.FINE, "Live document config overwritten with new config.");
}
managerToConfigure.assign(manager);
}