diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-07-23 22:28:05 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-07-23 22:28:05 +0200 |
| commit | 203ae58ace6f8ff2acddb15f299d0f6dc82ff7f8 (patch) | |
| tree | 6b5b0d4297335b5d37cc71913ad340244aed7d31 | |
| parent | 7e01167b11002815ae171a52c1896cb10e015398 (diff) | |
Even more logging when reading DCPs.
| -rw-r--r-- | src/lib/dcp_content.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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<int>(boost::filesystem::status(i.path()).type())); } } } |
