瀏覽代碼

Clean up load skip messages
Rebase of c70ab5a

Bepis 4 年之前
父節點
當前提交
234d922f0b
共有 1 個文件被更改,包括 2 次插入3 次删除
  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;
 					}