Commit f2c697fbae36da514b22adb0e730b57a24a12694
1 parent
ea579f93
print entire file path to ensure we are loading the model from the expected location
Showing
1 changed file
with
1 additions
and
1 deletions
openbr/core/core.cpp
| @@ -520,7 +520,7 @@ private: | @@ -520,7 +520,7 @@ private: | ||
| 520 | 520 | ||
| 521 | QFileInfo dFile(file); | 521 | QFileInfo dFile(file); |
| 522 | if (dFile.exists() && !dFile.isDir()) { | 522 | if (dFile.exists() && !dFile.isDir()) { |
| 523 | - qDebug("Loading %s", qPrintable(dFile.fileName())); | 523 | + qDebug("Loading %s", qPrintable(dFile.canonicalFilePath())); |
| 524 | load(file); | 524 | load(file); |
| 525 | return true; | 525 | return true; |
| 526 | } | 526 | } |