From: Carl Hetherington Date: Sat, 23 Jul 2022 14:52:38 +0000 (+0200) Subject: Add some more logging when reading DCPs. X-Git-Tag: v2.16.20~21 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=7e01167b11002815ae171a52c1896cb10e015398 Add some more logging when reading DCPs. --- diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc index 2e89adff0..28d3e3319 100644 --- a/src/lib/dcp_content.cc +++ b/src/lib/dcp_content.cc @@ -206,6 +206,8 @@ DCPContent::read_sub_directory (boost::filesystem::path p) } else if (boost::filesystem::is_directory(i.path()) && i.path().filename() != ".AppleDouble") { LOG_GENERAL ("Inside there's directory %1", i.path().string()); read_sub_directory (i.path()); + } else { + LOG_GENERAL("Ignoring %1 from inside", i.path().string()); } } }