mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
Removed some logs
This commit is contained in:
parent
44023a6059
commit
7d7767aa11
1 changed files with 0 additions and 6 deletions
|
@ -532,8 +532,6 @@ public class FileUploader extends Service
|
|||
*/
|
||||
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 class FileUploader extends Service
|
|||
|
||||
/// 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 class FileUploader extends Service
|
|||
uploadResult = new RemoteOperationResult(e);
|
||||
|
||||
} finally {
|
||||
Log_OC.v("NOW " + TAG + ", thread " + Thread.currentThread().getName(),
|
||||
"Removing payload " + mCurrentUpload.getRemotePath());
|
||||
Pair<UploadFileOperation, String> removeResult;
|
||||
if (mCurrentUpload.wasRenamed()) {
|
||||
removeResult = mPendingUploads.removePayload(
|
||||
|
|
Loading…
Reference in a new issue