From 170aa1de62c2faca96e561e060464f0bdf1bf7c1 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Mon, 15 Dec 2025 12:41:45 +0100 Subject: [PATCH] Update log level to warning for Pandoc unavailability --- app/MindWork AI Studio/Components/AttachDocuments.razor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/MindWork AI Studio/Components/AttachDocuments.razor.cs b/app/MindWork AI Studio/Components/AttachDocuments.razor.cs index 5d650a43..d29aaf45 100644 --- a/app/MindWork AI Studio/Components/AttachDocuments.razor.cs +++ b/app/MindWork AI Studio/Components/AttachDocuments.razor.cs @@ -83,7 +83,7 @@ public partial class AttachDocuments : MSGComponentBase // If Pandoc is not available (user cancelled installation), abort file drop: if (!pandocState.IsAvailable) { - this.Logger.LogInformation("The user cancelled the Pandoc installation or Pandoc is not available. Aborting file drop."); + this.Logger.LogWarning("The user cancelled the Pandoc installation or Pandoc is not available. Aborting file drop."); this.ClearDragClass(); this.StateHasChanged(); return; @@ -122,7 +122,7 @@ public partial class AttachDocuments : MSGComponentBase // If Pandoc is not available (user cancelled installation), abort file selection: if (!pandocState.IsAvailable) { - this.Logger.LogInformation("The user cancelled the Pandoc installation or Pandoc is not available. Aborting file selection."); + this.Logger.LogWarning("The user cancelled the Pandoc installation or Pandoc is not available. Aborting file selection."); return; }