diff --git a/src/plugins/projectexplorer/wincetoolchain.cpp b/src/plugins/projectexplorer/wincetoolchain.cpp
index 6210a2f352aca2b52152f88ce29fff8aa5fe8819..5524277060caaf82e66f31bed555e81a1abda676 100644
--- a/src/plugins/projectexplorer/wincetoolchain.cpp
+++ b/src/plugins/projectexplorer/wincetoolchain.cpp
@@ -211,7 +211,8 @@ static bool parseSDK(QXmlStreamReader& theReader,
                 // invalid
                 ceVer = theReader.readElementText();
                 if (ceVer.toInt() < 5) {
-                    qDebug() << "Ignoring SDK as Qt only support CE 5 and higher.";
+                    if (debug)
+                        qDebug("Ignoring SDK '%s'. Windows CE version %d is unsupported.", qPrintable(sdkName), ceVer.toInt());
                     return false;
                 }
             } else if (elemName == "Macro") {