- removed Log
authortobiasKaminsky <tobias@kaminsky.me>
Fri, 21 Nov 2014 17:12:48 +0000 (18:12 +0100)
committertobiasKaminsky <tobias@kaminsky.me>
Fri, 21 Nov 2014 17:12:48 +0000 (18:12 +0100)
src/com/owncloud/android/operations/DownloadFileOperation.java

index f3eace9..d0d249e 100644 (file)
@@ -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;
     }