From d49c8a1aefb5941cd7ed189ccdb7e56aaf08cd9e Mon Sep 17 00:00:00 2001 From: phkahler <14852918+phkahler@users.noreply.github.com> Date: Tue, 22 Sep 2020 14:53:51 -0400 Subject: [PATCH] add debug message showing the name of a group whose linked file can't be found. --- src/file.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/file.cpp b/src/file.cpp index 657a4b2..3cfcfbb 100644 --- a/src/file.cpp +++ b/src/file.cpp @@ -892,6 +892,7 @@ try_again: } } } else if(linkMap.count(g.linkFile) == 0) { + dbp("Missing file for group: %s", g.name.c_str()); // The file was moved; prompt the user for its new location. switch(LocateImportedFile(g.linkFile.RelativeTo(saveFile), canCancel)) { case Platform::MessageDialog::Response::YES: {