oof, merging around changes.
authorChris Koeritz <fred@gruntose.com>
Tue, 18 Sep 2012 03:30:56 +0000 (23:30 -0400)
committerChris Koeritz <fred@gruntose.com>
Tue, 18 Sep 2012 03:30:56 +0000 (23:30 -0400)
nucleus/library/filesystem/heavy_file_ops.cpp

index e8f48ebd5d20e585546ffe5a024250e27abd7499..d6ff4184da0c756df29a9f1e4df86e0f5b9d2f91 100644 (file)
@@ -275,12 +275,14 @@ outcome heavy_file_operations::buffer_files(const astring &source_root,
     huge_file current(full_file, "rb");
     if (!current.good()) {
       // we need to skip this file.
+LOG(astring("skipping bad file: ") + full_file);
       if (!advance(to_transfer, last_action)) break;
       continue;
     }
 
     if ((last_action._byte_start + last_action._length >= current.length())
         && current.length()) {
+//LOG(astring("finished handling file: ") + full_file);
       // this file is done now.  go to the next one.
       if (!advance(to_transfer, last_action)) break;
       continue;