From: simonbrandhof Date: Mon, 15 Nov 2010 16:55:52 +0000 (+0000) Subject: update center server: fix log X-Git-Tag: 2.6~580 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0746d937dfd10730f07b4ac116e228192bea7a9f;p=sonarqube.git update center server: fix log --- diff --git a/subprojects/sonar-update-center/sonar-update-center-server/src/main/java/org/sonar/updatecenter/server/HttpDownloader.java b/subprojects/sonar-update-center/sonar-update-center-server/src/main/java/org/sonar/updatecenter/server/HttpDownloader.java index 44aad96b860..59026bb1b5c 100644 --- a/subprojects/sonar-update-center/sonar-update-center-server/src/main/java/org/sonar/updatecenter/server/HttpDownloader.java +++ b/subprojects/sonar-update-center/sonar-update-center-server/src/main/java/org/sonar/updatecenter/server/HttpDownloader.java @@ -63,7 +63,7 @@ public class HttpDownloader { } File downloadFile(URI fileURI, File toFile, String login, String password) { - LOG.error("Download " + fileURI + " in " + toFile); + LOG.info("Download " + fileURI + " in " + toFile); DefaultHttpClient client = new DefaultHttpClient(); try { if (StringUtils.isNotBlank(login)) {