Improved logging for profile table parsing

This commit is contained in:
Thorsten Sommer 2026-02-01 19:59:28 +01:00
parent 0e14a3cb58
commit 4a092020d2
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 1 additions and 1 deletions

View File

@ -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<string>(out var idText) || !Guid.TryParse(idText, out var id))
{

View File

@ -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.