Browse code

reduce "Process files that was not remote copied" to debug()

noted in bug #276

Matt Domsch authored on 2014/02/07 04:43:34
Showing 1 changed files
... ...
@@ -792,7 +792,7 @@ def cmd_sync_remote2remote(args):
792 792
     n_copied, bytes_saved, failed_copy_files = remote_copy(s3, copy_pairs, destination_base)
793 793
 
794 794
     #process files not copied
795
-    output("Process files that was not remote copied")
795
+    debug("Process files that was not remote copied")
796 796
     failed_copy_count = len (failed_copy_files)
797 797
     for key in failed_copy_files:
798 798
         failed_copy_files[key]['target_uri'] = destination_base + key
... ...
@@ -1253,7 +1253,7 @@ def cmd_sync_local2remote(args):
1253 1253
         n_copies, saved_bytes, failed_copy_files  = remote_copy(s3, copy_pairs, destination_base)
1254 1254
 
1255 1255
         #upload file that could not be copied
1256
-        output("Process files that was not remote copied")
1256
+        debug("Process files that was not remote copied")
1257 1257
         failed_copy_count = len(failed_copy_files)
1258 1258
         _set_remote_uri(failed_copy_files, destination_base, single_file_local)
1259 1259
         n, total_size = _upload(failed_copy_files, n, failed_copy_count, total_size)