Skip to content

Commit

Permalink
Merge pull request #121 from Knewton/log-level-fix
Browse files Browse the repository at this point in the history
Fix log level for serviceUrls
  • Loading branch information
NiteshKant committed May 6, 2014
2 parents 7140256 + 171eb55 commit 70c7c48
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ public List<String> getServiceUrlsFromDNS(String instanceZone,
arrangeListBasedonHostname(serviceUrls);
serviceUrls.add(0, primaryServiceUrl);

logger.info(
logger.debug(
"This client will talk to the following serviceUrls in order : {} ",
Arrays.toString(serviceUrls.toArray()));
t.stop();
Expand Down Expand Up @@ -1639,7 +1639,7 @@ public void run() {
return;
}
if (!serviceUrlList.equals(eurekaServiceUrls.get())) {
logger.debug(
logger.info(
"Updating the serviceUrls as they seem to have changed from {} to {} ",
Arrays.toString(eurekaServiceUrls.get()
.toArray()), Arrays
Expand Down

0 comments on commit 70c7c48

Please sign in to comment.