Browse Source

- removed Log

tobiasKaminsky 10 years ago
parent
commit
df1ab9cfaa
1 changed files with 0 additions and 2 deletions
  1. 0 2
      src/com/owncloud/android/operations/DownloadFileOperation.java

+ 0 - 2
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;
     }