Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.cpp	(revision 73612)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.cpp	(revision 73613)
@@ -177,5 +177,4 @@
     /* Make sure field is bool: */
     AssertMsgReturn(field.isBool(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), false);
-    LogRel(("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()));
     const bool fFieldValue = field.toBool();
     //printf("  Field value: \"%s\"\n", fFieldValue ? "true" : "false");
@@ -189,5 +188,4 @@
     /* Make sure field is double: */
     AssertMsgReturn(field.isDouble(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), 0);
-    LogRel(("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()));
     const double dFieldValue = field.toDouble();
     //printf("  Field value: \"%f\"\n", dFieldValue);
@@ -201,5 +199,4 @@
     /* Make sure field is string: */
     AssertMsgReturn(field.isString(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), QString());
-    LogRel(("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()));
     const QString strFieldValue = field.toString();
     //printf("  Field value: \"%s\"\n", strFieldValue.toUtf8().constData());
@@ -212,10 +209,9 @@
 {
     /* Make sure field is array: */
-    AssertMsgReturn(field.isArray(), ("Item '%s' has wrong structure!", strFieldName.toUtf8().constData()), QStringList());
-    LogRel(("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()));
+    AssertMsgReturn(field.isArray(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), QStringList());
     const QJsonArray fieldValueArray = field.toArray();
     QStringList fieldValueStirngList;
     for (int i = 0; i < fieldValueArray.count(); ++i)
-        fieldValueStirngList << fieldValueArray[i].toString();
+            fieldValueStirngList << fieldValueArray[i].toString();
     //printf("  Field value: \"%s\"\n", fieldValueStirngList.join(", ").toUtf8().constData());
 
