iOS: Make "skipping platform" debug message instead of warning.

Since there are WatchOS/Simulator and TVOS/Simulator nowadays, skipping
these platforms is not worth a warning.

Change-Id: I3671f8e9186dd521887acc81e5e60844bc9e9bcf
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Eike Ziller
2016-03-21 15:10:43 +01:00
parent 5a2ba4d7c5
commit a4d0032733

View File

@@ -137,7 +137,7 @@ void IosProbe::setupDefaultToolchains(const QString &devPath, const QString &xco
if (name != QLatin1String("macosx") && name != QLatin1String("iphoneos")
&& name != QLatin1String("iphonesimulator"))
{
qCWarning(probeLog) << indent << QString::fromLatin1("Skipping unknown platform %1").arg(name);
qCDebug(probeLog) << indent << QString::fromLatin1("Skipping unknown platform %1").arg(name);
continue;
}