From f2c697fbae36da514b22adb0e730b57a24a12694 Mon Sep 17 00:00:00 2001 From: Josh Klontz Date: Wed, 29 Oct 2014 07:56:49 -0400 Subject: [PATCH] print entire file path to ensure we are loading the model from the expected location --- openbr/core/core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbr/core/core.cpp b/openbr/core/core.cpp index 7d77060..9233aad 100644 --- a/openbr/core/core.cpp +++ b/openbr/core/core.cpp @@ -520,7 +520,7 @@ private: QFileInfo dFile(file); if (dFile.exists() && !dFile.isDir()) { - qDebug("Loading %s", qPrintable(dFile.fileName())); + qDebug("Loading %s", qPrintable(dFile.canonicalFilePath())); load(file); return true; } -- libgit2 0.21.4