浏览代码

Fix formatting in String.Join

ghorsington 4 年之前
父节点
当前提交
7723b6a1a6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      BepInEx.Preloader/Patching/AssemblyPatcher.cs

+ 1 - 1
BepInEx.Preloader/Patching/AssemblyPatcher.cs

@@ -234,7 +234,7 @@ namespace BepInEx.Preloader.Patching
 
 			if (ConfigBreakBeforeLoadAssemblies.Value)
 			{
-				Logger.LogInfo($"BepInEx is about load the following assemblies:\n{String.Join("\n", patchedAssemblies.ToArray())}");
+				Logger.LogInfo(data: $"BepInEx is about load the following assemblies:\n{String.Join("\n", patchedAssemblies.ToArray())}");
 				Logger.LogInfo($"The assemblies were dumped into {DumpedAssembliesPath}");
 				Logger.LogInfo("Load any assemblies into the debugger, set breakpoints and continue execution.");
 				Debugger.Break();