summaryrefslogtreecommitdiffstats
path: root/src/controllers/controllerpresetinfo.cpp
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2016-05-04 08:39:26 -0700
committerRJ Ryan <rryan@mixxx.org>2016-05-04 08:39:26 -0700
commitbf3c4572d74cd2cac7c1c616ad4f5332a9f840fb (patch)
tree95bf4610032ce343904a3668b8763b20a0ecb066 /src/controllers/controllerpresetinfo.cpp
parentaf99a26bdd5ddfa4217b06d552cfd5755740908d (diff)
Convert some qDebugs into qWarnings.
Diffstat (limited to 'src/controllers/controllerpresetinfo.cpp')
-rw-r--r--src/controllers/controllerpresetinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controllers/controllerpresetinfo.cpp b/src/controllers/controllerpresetinfo.cpp
index c8850f4d6e..96c5c69b2c 100644
--- a/src/controllers/controllerpresetinfo.cpp
+++ b/src/controllers/controllerpresetinfo.cpp
@@ -38,7 +38,7 @@ PresetInfo::PresetInfo(const QString preset_path)
QDomElement root = XmlParse::openXMLFile(m_path, "controller");
if (root.isNull()) {
- qDebug() << "ERROR parsing" << m_path;
+ qWarning() << "ERROR parsing" << m_path;
return;
}
QDomElement info = root.firstChildElement("info");