summaryrefslogtreecommitdiffstats
path: root/tenant-cd-api
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2022-06-07 14:35:46 +0200
committerjonmv <venstad@gmail.com>2022-06-07 14:35:46 +0200
commit658bc2663c9988b6efe13a16fb79d85b21a7a251 (patch)
treeadf260a1ca24603f3d88114dbfb4a02a3da2646e /tenant-cd-api
parent36663583469ce63be5467907dd8e976d798f8f31 (diff)
Lower level on some logging
Diffstat (limited to 'tenant-cd-api')
-rw-r--r--tenant-cd-api/src/main/java/ai/vespa/hosted/cd/TestRuntime.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/TestRuntime.java b/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/TestRuntime.java
index 1bf0a3081bd..d031054851c 100644
--- a/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/TestRuntime.java
+++ b/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/TestRuntime.java
@@ -20,10 +20,10 @@ public interface TestRuntime {
static TestRuntime get() {
TestRuntime provided = TestRuntimeProvider.getTestRuntime();
if (provided != null) {
- logger.info("Using test runtime from TestRuntimeProvider");
+ logger.fine("Using test runtime from TestRuntimeProvider");
return provided;
}
- logger.info("Using test runtime from ServiceLoader");
+ logger.fine("Using test runtime from ServiceLoader");
return ServiceLoader.load(TestRuntime.class, TestRuntime.class.getClassLoader())
.findFirst()
.orElseThrow(() -> new IllegalStateException("No TestRuntime initialized"));