From: Carl Hetherington Date: Sat, 23 Jul 2022 20:28:05 +0000 (+0200) Subject: Even more logging when reading DCPs. X-Git-Tag: v2.16.20~20 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=203ae58ace6f8ff2acddb15f299d0f6dc82ff7f8 Even more logging when reading DCPs. --- diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc index 28d3e3319..62b74be90 100644 --- a/src/lib/dcp_content.cc +++ b/src/lib/dcp_content.cc @@ -207,7 +207,7 @@ DCPContent::read_sub_directory (boost::filesystem::path p) 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()); + LOG_GENERAL("Ignoring %1 from inside: status is %2", i.path().string(), static_cast(boost::filesystem::status(i.path()).type())); } } }