summaryrefslogtreecommitdiffstats
path: root/config/src/main/java/com/yahoo/config/subscription/ConfigSourceSet.java
diff options
context:
space:
mode:
Diffstat (limited to 'config/src/main/java/com/yahoo/config/subscription/ConfigSourceSet.java')
-rwxr-xr-xconfig/src/main/java/com/yahoo/config/subscription/ConfigSourceSet.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/config/src/main/java/com/yahoo/config/subscription/ConfigSourceSet.java b/config/src/main/java/com/yahoo/config/subscription/ConfigSourceSet.java
index 7472439d6a4..e0605dce30d 100755
--- a/config/src/main/java/com/yahoo/config/subscription/ConfigSourceSet.java
+++ b/config/src/main/java/com/yahoo/config/subscription/ConfigSourceSet.java
@@ -1,8 +1,6 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.subscription;
-import com.yahoo.log.LogLevel;
-
import java.util.Arrays;
import java.util.Collections;
import java.util.LinkedHashSet;
@@ -10,6 +8,7 @@ import java.util.List;
import java.util.Set;
import java.util.logging.Logger;
+import static java.util.logging.Level.INFO;
/**
* An immutable set of connection endpoints, where each endpoint points to either a
@@ -98,7 +97,7 @@ public class ConfigSourceSet implements ConfigSource {
public static ConfigSourceSet createDefault() {
String configSources = System.getenv("VESPA_CONFIG_SOURCES");
if (configSources != null) {
- log.log(LogLevel.INFO, "Using config sources from VESPA_CONFIG_SOURCES: " + configSources);
+ log.log(INFO, "Using config sources from VESPA_CONFIG_SOURCES: " + configSources);
return new ConfigSourceSet(checkSourcesSyntax(configSources));
} else {
String[] def = {"tcp/localhost:" + System.getProperty("vespa.config.port", "19090")};