Skip to content
This repository was archived by the owner on Mar 16, 2019. It is now read-only.

Commit 7752ff7

Browse files
committed
Remove log state from Android file response handler function #353
1 parent 3c14c8c commit 7752ff7

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

android/src/main/java/com/RNFetchBlob/Response/RNFetchBlobFileResp.java

-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ public long read(Buffer sink, long byteCount) throws IOException {
8181
byte[] bytes = new byte[(int) byteCount];
8282
long read = originalBody.byteStream().read(bytes, 0, (int) byteCount);
8383
bytesDownloaded += read > 0 ? read : 0;
84-
Log.i("bytes downloaded", String.valueOf(byteCount) + "/" + String.valueOf(read) + "=" + String.valueOf(bytesDownloaded));
8584
if (read > 0) {
8685
ofStream.write(bytes, 0, (int) read);
8786
}

0 commit comments

Comments
 (0)