Add some debugging logs for #953.
authorCarl Hetherington <cth@carlh.net>
Mon, 19 Sep 2016 14:16:53 +0000 (15:16 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 19 Sep 2016 14:16:53 +0000 (15:16 +0100)
src/lib/reel_writer.cc

index d742818ae08849bfe81e191c3f922deb01a3b6c0..e2827251b2dfec6ac59fedf3d83ccd361beb138e 100644 (file)
@@ -130,7 +130,13 @@ ReelWriter::write_frame_info (Frame frame, Eyes eyes, dcp::FrameInfo info) const
 {
        FILE* file = 0;
        boost::filesystem::path info_file = _film->info_file (_period);
+
        bool const read = boost::filesystem::exists (info_file);
+       LOG_GENERAL (
+               "Checked %1 (exists %2) length is %3 perms are %4",
+               info_file, read ? 1 : 0, boost::filesystem::file_size (info_file), int(boost::filesystem::status(info_file).permissions())
+               );
+
        if (read) {
                file = fopen_boost (info_file, "r+b");
        } else {