Skip to content

Commit

Permalink
Removed some logs
Browse files Browse the repository at this point in the history
  • Loading branch information
davivel committed Aug 24, 2015
1 parent eecb999 commit 1254acb
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/com/owncloud/android/files/services/FileUploader.java
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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);
Expand All @@ -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<UploadFileOperation, String> removeResult;
if (mCurrentUpload.wasRenamed()) {
removeResult = mPendingUploads.removePayload(
Expand Down

0 comments on commit 1254acb

Please sign in to comment.