We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 276e245 commit 8dac496Copy full SHA for 8dac496
1 file changed
ShortStartLoader/StartupOptimize.cs
@@ -218,6 +218,14 @@ void LoadAllArcOfPrefix2(string prefix)
218
//AddFolderOrArchive("product");
219
//Product.Initialize(GameUty.m_FileSystem);
220
221
+ ShortStartLoader.PluginLogger.LogInfo(
222
+ $"Product Type: {Product.type.ToString()}\n" +
223
+ $"Game Version: {GameUty.GetGameVersionText()}\n" +
224
+ $"Build Version: {GameUty.GetBuildVersionText()}\n" +
225
+ $"Is CM Linked: {GameUty.IsEnabledCompatibilityMode.ToString()}" +
226
+ (GameUty.IsEnabledCompatibilityMode ? $"\nCM Version: {GameUty.GetLegacyGameVersionText()}" : string.Empty)
227
+ );
228
+
229
_backgroundLoadTask = Task.Factory.StartNew(delegate
230
{
231
var stopwatch1 = new Stopwatch();
0 commit comments