summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-04-03 00:42:52 +0100
committerCarl Hetherington <cth@carlh.net>2018-04-03 00:42:52 +0100
commite068f8b19ed0892fed8da44b873e2d309d7ba137 (patch)
tree4d7ee6c5f89b7bb4c808fa900809778e3f9b0b48 /src
parentcbdbf7ddf3ed35bb55fab0c99c393e8feb52eba7 (diff)
Remove rather wordy debug for #953, not seen for a while.
Diffstat (limited to 'src')
-rw-r--r--src/lib/reel_writer.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/lib/reel_writer.cc b/src/lib/reel_writer.cc
index fce75484f..16c20a536 100644
--- a/src/lib/reel_writer.cc
+++ b/src/lib/reel_writer.cc
@@ -134,17 +134,6 @@ ReelWriter::write_frame_info (Frame frame, Eyes eyes, dcp::FrameInfo info) const
bool const read = boost::filesystem::exists (info_file);
-#ifdef DCPOMATIC_WINDOWS
- if (read) {
- LOG_GENERAL (
- "Checked %1 (which exists) length is %2 perms are %3",
- info_file, boost::filesystem::file_size (info_file), int(boost::filesystem::status(info_file).permissions())
- );
- } else {
- LOG_GENERAL ("Checked %1 (which does not exist)", info_file);
- }
-#endif
-
if (read) {
file = fopen_boost (info_file, "r+b");
} else {