diff options
| -rw-r--r-- | src/lib/dcp_content.cc | 2 |
1 files changed, 2 insertions, 0 deletions
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()); } } } |
