Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private List<Host> getUpdateFromEureka() {
throw new RuntimeException("EurekaHostsSupplier needs a non-null DiscoveryClient");
}

Logger.info("Dyno fetching instance list for app: " + applicationName);
Logger.debug("Dyno fetching instance list for app: " + applicationName);

Application app = discoveryClient.getApplication(applicationName);
List<Host> hosts = new ArrayList<Host>();
Expand Down Expand Up @@ -120,7 +120,7 @@ public Host apply(InstanceInfo info) {
}
}));

Logger.info("Dyno found hosts from eureka - num hosts: " + hosts.size());
Logger.debug("Dyno found hosts from eureka - num hosts: " + hosts.size());

return hosts;
}
Expand Down