From df1ab9cfaa4ee50f9c6995a1f7cec94f0143e758 Mon Sep 17 00:00:00 2001 From: tobiasKaminsky Date: Fri, 21 Nov 2014 18:12:48 +0100 Subject: [PATCH] - removed Log --- src/com/owncloud/android/operations/DownloadFileOperation.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/com/owncloud/android/operations/DownloadFileOperation.java b/src/com/owncloud/android/operations/DownloadFileOperation.java index f3eace9c..d0d249e0 100644 --- a/src/com/owncloud/android/operations/DownloadFileOperation.java +++ b/src/com/owncloud/android/operations/DownloadFileOperation.java @@ -153,7 +153,6 @@ public class DownloadFileOperation extends RemoteOperation { newFile.getParentFile().mkdirs(); moved = tmpFile.renameTo(newFile); - Log_OC.d("mediaScan", "mediaScan : " + newFile.getAbsolutePath()); MediaScannerConnection.scanFile(MainApp.getAppContext(), new String[]{newFile.getAbsolutePath()}, null, null); @@ -163,7 +162,6 @@ public class DownloadFileOperation extends RemoteOperation { } Log_OC.i(TAG, "Download of " + mFile.getRemotePath() + " to " + getSavePath() + ": " + result.getLogMessage()); - return result; } -- 2.11.0