Forráskód Böngészése

Refactor new setting name, clarify description

ghorsington 4 éve
szülő
commit
7e687b6ef9
1 módosított fájl, 3 hozzáadás és 3 törlés
  1. 3 3
      BepInEx/Console/ConsoleManager.cs

+ 3 - 3
BepInEx/Console/ConsoleManager.cs

@@ -107,12 +107,12 @@ namespace BepInEx
 			"If true, console is set to the Shift-JIS encoding, otherwise UTF-8 encoding.");
 
 		public static readonly ConfigEntry<ConsoleOutRedirectType> ConfigConsoleOutRedirectType = ConfigFile.CoreConfig.Bind(
-				"Logging.Console", "OutputRedirectType",
+				"Logging.Console", "StandardOutType",
 				ConsoleOutRedirectType.Auto,
 				new StringBuilder()
-					.AppendLine("Hints console manager how to redirect console log. Possible values:")
+					.AppendLine("Hints console manager on what handle to assign as StandardOut. Possible values:")
 					.AppendLine("Auto - lets BepInEx decide how to redirect console output")
-					.AppendLine("ConsoleOut - prefer redirecting to console output; if possible, closes standard output")
+					.AppendLine("ConsoleOut - prefer redirecting to console output; if possible, closes original standard output")
 					.AppendLine("StandardOut - prefer redirecting to standard output; if possible, closes console out")
 					.ToString()
 			);