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; }