Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / nucleus / library / filesystem / heavy_file_ops.cpp
index 0d2f91bc3463383ffcc1d0285597886af0abac03..6f5b19db1832feffb4e815c3df9c05069745a541 100644 (file)
@@ -275,12 +275,13 @@ 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;