From 1254acb0cab0051c8935ac4eac9d324da72a36ee Mon Sep 17 00:00:00 2001 From: "David A. Velasco" Date: Mon, 24 Aug 2015 12:43:32 +0200 Subject: [PATCH] Removed some logs --- src/com/owncloud/android/files/services/FileUploader.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/com/owncloud/android/files/services/FileUploader.java b/src/com/owncloud/android/files/services/FileUploader.java index df10f01b077e..b22abdcf6ce7 100644 --- a/src/com/owncloud/android/files/services/FileUploader.java +++ b/src/com/owncloud/android/files/services/FileUploader.java @@ -532,8 +532,6 @@ public void handleMessage(Message msg) { */ public void uploadFile(String uploadKey) { - Log_OC.v( "NOW " + TAG + ", thread " + Thread.currentThread().getName(), - "Getting upload of " + uploadKey); mCurrentUpload = mPendingUploads.get(uploadKey); if (mCurrentUpload != null) { @@ -569,8 +567,6 @@ public void uploadFile(String uploadKey) { /// perform the upload if (grantResult.isSuccess()) { - Log_OC.v( "NOW " + TAG + ", thread " + Thread.currentThread().getName(), - "Executing upload of " + mCurrentUpload.getRemotePath()); OCFile parent = mStorageManager.getFileByPath(remoteParentPath); mCurrentUpload.getFile().setParentId(parent.getFileId()); uploadResult = mCurrentUpload.execute(mUploadClient); @@ -586,8 +582,6 @@ public void uploadFile(String uploadKey) { uploadResult = new RemoteOperationResult(e); } finally { - Log_OC.v("NOW " + TAG + ", thread " + Thread.currentThread().getName(), - "Removing payload " + mCurrentUpload.getRemotePath()); Pair removeResult; if (mCurrentUpload.wasRenamed()) { removeResult = mPendingUploads.removePayload(