Commit 57b7497e943bd863f0b1ccbdb25acd65147a997b
1 parent
3594e669
made loading feature message only appear in verbose mode
Showing
1 changed file
with
1 additions
and
1 deletions
sdk/core/core.cpp
| @@ -242,7 +242,7 @@ private: | @@ -242,7 +242,7 @@ private: | ||
| 242 | if (!file.isEmpty()) description = file; | 242 | if (!file.isEmpty()) description = file; |
| 243 | 243 | ||
| 244 | if (QFileInfo(description).exists()) { | 244 | if (QFileInfo(description).exists()) { |
| 245 | - qDebug("Loading %s", qPrintable(QFileInfo(description).fileName())); | 245 | + if (Globals->verbose) qDebug("Loading %s", qPrintable(QFileInfo(description).fileName())); |
| 246 | load(description); | 246 | load(description); |
| 247 | return; | 247 | return; |
| 248 | } | 248 | } |