From f1fa8fd8a0b8c27b07b9468b1068020016509aaf Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sun, 1 Feb 2026 20:00:13 +0100 Subject: [PATCH] Improved logging for profile table parsing (#650) --- app/MindWork AI Studio/Settings/Profile.cs | 1 - app/MindWork AI Studio/wwwroot/changelog/v26.2.1.md | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/Settings/Profile.cs b/app/MindWork AI Studio/Settings/Profile.cs index ac657ba6..2129b04c 100644 --- a/app/MindWork AI Studio/Settings/Profile.cs +++ b/app/MindWork AI Studio/Settings/Profile.cs @@ -94,7 +94,6 @@ public record Profile( public static bool TryParseProfileTable(int idx, LuaTable table, Guid configPluginId, out ConfigurationBaseObject template) { - LOGGER.LogInformation($"\n Profile table parsing {idx}.\n"); template = NO_PROFILE; if (!table.TryGetValue("Id", out var idValue) || !idValue.TryRead(out var idText) || !Guid.TryParse(idText, out var id)) { diff --git a/app/MindWork AI Studio/wwwroot/changelog/v26.2.1.md b/app/MindWork AI Studio/wwwroot/changelog/v26.2.1.md index a743739d..85f7cbc7 100644 --- a/app/MindWork AI Studio/wwwroot/changelog/v26.2.1.md +++ b/app/MindWork AI Studio/wwwroot/changelog/v26.2.1.md @@ -4,4 +4,5 @@ - Added an option to hide the policy definition in the Document Analysis Assistant (in preview) when exporting and distributing that policy by a configuration plugin in organizations, making it easier for users to use. - Added the policy export functionality to the Document Analysis Assistant (in preview). You can now export policies as Lua code for a configuration plugin to distribute the policy across your organization. - Improved the error checking & logging behavior when the installed `PDFium` version did not meet the minimum required version. +- Improved the logging behavior when parsing profile tables from configuration plugins. - Fixed a bug where the global minimum confidence level was not being applied to the assistants. \ No newline at end of file