From 962d9b550fba2d2f572703a36e37768131167801 Mon Sep 17 00:00:00 2001 From: Robert McRackan Date: Mon, 15 Apr 2024 08:03:49 -0400 Subject: [PATCH] "Unable to load module" should just be a warning, not error --- Source/LibationFileManager/InteropFactory.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/LibationFileManager/InteropFactory.cs b/Source/LibationFileManager/InteropFactory.cs index 03762099..c3198944 100644 --- a/Source/LibationFileManager/InteropFactory.cs +++ b/Source/LibationFileManager/InteropFactory.cs @@ -95,9 +95,9 @@ namespace LibationFileManager var assembly = CurrentDomain_AssemblyResolve_internal(asmName, here: here); lowEffortCache[key] = assembly; - //Let the runtime handle any dll not found exceptions. + // Let the runtime handle any dll not found exceptions if (assembly is null) - Serilog.Log.Logger.Error($"Unable to load module {args.Name}"); + Serilog.Log.Logger.Warning($"Unable to load module {args.Name}"); return assembly; }