Add missing space in debug output
This commit is contained in:
parent
92cf221a2b
commit
5117956648
|
@ -416,7 +416,7 @@ public class HttpDownloadConnection implements Transferable {
|
||||||
|
|
||||||
if (tryResume) {
|
if (tryResume) {
|
||||||
resumeSize = file.getSize();
|
resumeSize = file.getSize();
|
||||||
Log.d(Config.LOGTAG, "http download trying resume after" + resumeSize + " of " + expected);
|
Log.d(Config.LOGTAG, "http download trying resume after " + resumeSize + " of " + expected);
|
||||||
connection.setRequestProperty("Range", "bytes=" + resumeSize + "-");
|
connection.setRequestProperty("Range", "bytes=" + resumeSize + "-");
|
||||||
}
|
}
|
||||||
connection.setConnectTimeout(Config.SOCKET_TIMEOUT * 1000);
|
connection.setConnectTimeout(Config.SOCKET_TIMEOUT * 1000);
|
||||||
|
|
Loading…
Reference in a new issue