From b90ecc3bcff7041db1a1a5547623c1c3bbbfdcd0 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Mon, 17 Sep 2012 23:30:56 -0400 Subject: [PATCH] oof, merging around changes. --- nucleus/library/filesystem/heavy_file_ops.cpp | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.34.1