From 7e01167b11002815ae171a52c1896cb10e015398 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 23 Jul 2022 16:52:38 +0200 Subject: [PATCH] Add some more logging when reading DCPs. --- src/lib/dcp_content.cc | 2 ++ 1 file changed, 2 insertions(+) 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()); } } } -- 2.30.2