From 52d53f1d233394c9ebf844f06d39d0c78eb7de29 Mon Sep 17 00:00:00 2001 From: Robert Date: Mon, 6 Mar 2023 22:01:08 +0100 Subject: [PATCH] Plugins - Clarify lock file exception --- src/Artemis.Core/Exceptions/ArtemisPluginLockException.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Artemis.Core/Exceptions/ArtemisPluginLockException.cs b/src/Artemis.Core/Exceptions/ArtemisPluginLockException.cs index e601e6e26..f1b5d2e71 100644 --- a/src/Artemis.Core/Exceptions/ArtemisPluginLockException.cs +++ b/src/Artemis.Core/Exceptions/ArtemisPluginLockException.cs @@ -14,7 +14,7 @@ public class ArtemisPluginLockException : Exception private static string CreateExceptionMessage(Exception? innerException) { return innerException != null - ? "Found a lock file, skipping load, see inner exception for last known exception." - : "Found a lock file, skipping load."; + ? "Found a lock file, skipping automatic load, see inner exception for last known exception. Please manually re-enable the plugin." + : "Found a lock file, skipping automatic load. Please manually re-enable the plugin."; } } \ No newline at end of file