Browse Source

Clean up load skip messages
Rebase of c70ab5a

Bepis 4 years ago
parent
commit
234d922f0b
1 changed files with 2 additions and 3 deletions
  1. 2 3
      BepInEx.Core/Bootstrap/BaseChainloader.cs

+ 2 - 3
BepInEx.Core/Bootstrap/BaseChainloader.cs

@@ -89,7 +89,7 @@ namespace BepInEx.Bootstrap
 				{
 					if (loadedVersion != null)
 					{
-						Logger.LogWarning($"Skipping [{pluginInfo}] because a newer version exists [{loadedVersion}]");
+						Logger.LogWarning($"Skipping [{pluginInfo}] because a newer version exists ({loadedVersion})");
 						continue;
 					}
 
@@ -101,8 +101,7 @@ namespace BepInEx.Bootstrap
 
 					if (invalidProcessName)
 					{
-						Logger.LogWarning($"Skipping [{pluginInfo}] because of process filters");
-						Logger.LogDebug($"[{pluginInfo}] has the following process filters: {string.Join(", ", pluginInfo.Processes.Select(p => p.ProcessName).ToArray())}");
+						Logger.LogWarning($"Skipping [{pluginInfo}] because of process filters ({string.Join(", ", pluginInfo.Processes.Select(p => p.ProcessName).ToArray())})");
 						continue;
 					}