瀏覽代碼

- removed Log

tobiasKaminsky 10 年之前
父節點
當前提交
df1ab9cfaa
共有 1 個文件被更改,包括 0 次插入2 次删除
  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;
     }