diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-07-23 16:52:38 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-07-23 16:52:38 +0200 |
| commit | 7e01167b11002815ae171a52c1896cb10e015398 (patch) | |
| tree | 2c5553000d64b387fc3f64074a6be30ace607acb | |
| parent | e748b419aa411ec8ccc18fe0286145e6fee05702 (diff) | |
Add some more logging when reading DCPs.
| -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()); } } } |
