From: Carl Hetherington Date: Wed, 5 Aug 2020 22:41:33 +0000 (+0200) Subject: Hackz. X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=e144ff18b622111e315674b5f926293de5befe0a Hackz. --- diff --git a/src/tools/dcpomatic_disk_writer.cc b/src/tools/dcpomatic_disk_writer.cc index fd6b6db75..0348557c3 100644 --- a/src/tools/dcpomatic_disk_writer.cc +++ b/src/tools/dcpomatic_disk_writer.cc @@ -132,6 +132,7 @@ write (boost::filesystem::path from, boost::filesystem::path to, uint64_t& total int progress_count = 0; uint64_t remaining = file_size (from); while (remaining > 0) { + std::cout << "write " << from << " " << remaining << " / " << total << "\n"; uint64_t const this_time = min(remaining, block_size); size_t read = fread (buffer, 1, this_time, in); if (read != this_time) {