commit b9eb17d6635d8289345ef60e714587eb587fa7fd Author: Karsten Loesing karsten.loesing@gmx.net Date: Tue Dec 6 13:45:24 2011 +0100
Remove an error message that is too loud.
It's quite possible that we fail to download a consensus from a directory authority. We should expect that. We'll also include a warning in the later reports. But this is not an error case of the program itself. --- src/org/torproject/doctor/Downloader.java | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/src/org/torproject/doctor/Downloader.java b/src/org/torproject/doctor/Downloader.java index 1e3b05e..3125062 100755 --- a/src/org/torproject/doctor/Downloader.java +++ b/src/org/torproject/doctor/Downloader.java @@ -56,9 +56,6 @@ public class Downloader { if (responses.containsKey(url)) { String response = responses.get(url); this.downloadedConsensuses.put(nickname, response); - } else { - System.err.println("Could not download consensus from directory " - + "authority " + nickname + ". Ignoring."); } } if (responses.isEmpty()) {
tor-commits@lists.torproject.org