* NewsFetcher: Change fetch failed from error to warning

* installer: Fix URL and "email"
    * checklist.txt: New release checklist
This commit is contained in:
zzz
2008-01-31 19:56:00 +00:00
parent 83f51b4a66
commit 22f1684262
5 changed files with 23 additions and 6 deletions

View File

@ -221,8 +221,8 @@ public class NewsFetcher implements Runnable, EepGet.StatusListener {
}
public void transferFailed(String url, long bytesTransferred, long bytesRemaining, int currentAttempt) {
if (_log.shouldLog(Log.ERROR))
_log.error("Failed to fetch the news from " + url);
if (_log.shouldLog(Log.WARN))
_log.warn("Failed to fetch the news from " + url);
File temp = new File(TEMP_NEWS_FILE);
temp.delete();
}