QmlDesigner: Reduce the tracing output

ItemLibraryEntry tracing output was too long.

Change-Id: I3aec76b4c846d8a3739bba7b564818ab9aa7976f
Reviewed-by: Marco Bubke <marco.bubke@qt.io>
This commit is contained in:
Burak Hancerli
2025-03-31 15:28:44 +02:00
parent 58d2a88e9c
commit 4dfced692a

View File

@@ -415,14 +415,7 @@ struct ItemLibraryEntry
using NanotraceHR::keyValue; using NanotraceHR::keyValue;
auto dict = dictonary(keyValue("type id", entry.typeId), auto dict = dictonary(keyValue("type id", entry.typeId),
keyValue("type name", entry.typeName), keyValue("type name", entry.typeName),
keyValue("name", entry.name), keyValue("name", entry.name));
keyValue("icon path", entry.iconPath),
keyValue("category", entry.category),
keyValue("import", entry.import),
keyValue("tool tip", entry.toolTip),
keyValue("template path", entry.templatePath),
keyValue("properties", entry.properties),
keyValue("extra file paths", entry.extraFilePaths));
convertToString(string, dict); convertToString(string, dict);
} }