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 | 520 | |
| 521 | 521 | QFileInfo dFile(file); |
| 522 | 522 | if (dFile.exists() && !dFile.isDir()) { |
| 523 | - qDebug("Loading %s", qPrintable(dFile.fileName())); | |
| 523 | + qDebug("Loading %s", qPrintable(dFile.canonicalFilePath())); | |
| 524 | 524 | load(file); |
| 525 | 525 | return true; |
| 526 | 526 | } | ... | ... |