From: Chris Koeritz Date: Tue, 18 Sep 2012 03:30:56 +0000 (-0400) Subject: oof, merging around changes. X-Git-Tag: 2.140.90~1229 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=b90ecc3bcff7041db1a1a5547623c1c3bbbfdcd0;p=feisty_meow.git oof, merging around changes. --- diff --git a/nucleus/library/filesystem/heavy_file_ops.cpp b/nucleus/library/filesystem/heavy_file_ops.cpp index e8f48ebd..d6ff4184 100644 --- a/nucleus/library/filesystem/heavy_file_ops.cpp +++ b/nucleus/library/filesystem/heavy_file_ops.cpp @@ -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;