Bugfix: Typo in log

This commit is contained in:
Laurent Clouet
2016-07-29 23:25:05 +02:00
parent 242ef644e2
commit c8719390d1

View File

@@ -603,8 +603,8 @@ public class Client {
while ((ret != 0 || md5_check == false) && attempts < this.maxDownloadFileAttempts) { while ((ret != 0 || md5_check == false) && attempts < this.maxDownloadFileAttempts) {
if (ret != 0) { if (ret != 0) {
this.gui.error("Client::downloadFile problem with Utils.HTTPGetFile returned " + ret); this.gui.error("Client::downloadFile problem with Server.HTTPGetFile returned " + ret);
this.log.debug("Client::downloadFile problem with Utils.HTTPGetFile (return: " + ret + ") removing local file (path: " + local_path + ")"); this.log.debug("Client::downloadFile problem with Server.HTTPGetFile (return: " + ret + ") removing local file (path: " + local_path + ")");
} }
else if (md5_check == false) { else if (md5_check == false) {
this.gui.error("Client::downloadFile problem with Client::checkFile mismatch on md5"); this.gui.error("Client::downloadFile problem with Client::checkFile mismatch on md5");