From 5ad0b128aafa5c9a49d57690a46fc7ac591dd0b2 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Wed, 30 Oct 2024 23:39:11 +0900 Subject: [PATCH] Dummy commit --- BTCPayServer/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Program.cs b/BTCPayServer/Program.cs index a333ea35b5..cc183db6d5 100644 --- a/BTCPayServer/Program.cs +++ b/BTCPayServer/Program.cs @@ -91,7 +91,7 @@ static async Task Main(string[] args) } catch (Exception e) when (PluginManager.IsExceptionByPlugin(e, out var pluginName)) { - logs.Configuration.LogError(e, $"Disabling plugin {pluginName} as it crashed on startup"); + logs.Configuration.LogError(e, $"Plugin crash during startup detected, disabling {pluginName}..."); var pluginDir = new DataDirectories().Configure(conf).PluginDir; PluginManager.DisablePlugin(pluginDir, pluginName); }