summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/tools/dcpomatic_disk.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/dcpomatic_disk.cc b/src/tools/dcpomatic_disk.cc
index b47addce9..2bd3c1f72 100644
--- a/src/tools/dcpomatic_disk.cc
+++ b/src/tools/dcpomatic_disk.cc
@@ -88,7 +88,9 @@ public:
boost::optional<boost::filesystem::path> get () const
{
auto const dcp = boost::filesystem::path(wx_to_std(GetPath()));
+ LOG_DISK("Checking %1 for ASSETMAP", dcp.string());
if (!dcp::filesystem::exists(dcp / "ASSETMAP") && !dcp::filesystem::exists(dcp / "ASSETMAP.xml")) {
+ LOG_DISK("Found neither %1 nor %2", dcp / "ASSETMAP", dcp / "ASSETMAP.xml");
error_dialog (nullptr, _("No ASSETMAP or ASSETMAP.xml found in this folder. Please choose a DCP folder."));
return {};
}