From f58d124197a139a3da1ed44d399a4ec3d068e185 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Sun, 2 Sep 2018 01:59:17 -0500 Subject: [PATCH] Fixed some spelling --- IPA.Loader/Loader/PluginManager.cs | 6 ++---- IPA.Loader/Logging/Logger.cs | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/IPA.Loader/Loader/PluginManager.cs b/IPA.Loader/Loader/PluginManager.cs index cd97e4a3..a08bbf56 100644 --- a/IPA.Loader/Loader/PluginManager.cs +++ b/IPA.Loader/Loader/PluginManager.cs @@ -84,7 +84,6 @@ namespace IPA.Loader // Process.GetCurrentProcess().MainModule crashes the game and Assembly.GetEntryAssembly() is NULL, // so we need to resort to P/Invoke string exeName = Path.GetFileNameWithoutExtension(AppInfo.StartupPath); - Logger.log.Info(exeName); _bsPlugins = new List(); _ipaPlugins = new List(); @@ -129,9 +128,8 @@ namespace IPA.Loader _bsPlugins.AddRange(result.Item1); _ipaPlugins.AddRange(result.Item2); } - - - // DEBUG + + Logger.log.Info(exeName); Logger.log.Info($"Running on Unity {UnityEngine.Application.unityVersion}"); Logger.log.Info($"Game version {UnityEngine.Application.version}"); Logger.log.Info("-----------------------------"); diff --git a/IPA.Loader/Logging/Logger.cs b/IPA.Loader/Logging/Logger.cs index 93f1529f..aa9d8004 100644 --- a/IPA.Loader/Logging/Logger.cs +++ b/IPA.Loader/Logging/Logger.cs @@ -21,7 +21,7 @@ namespace IPA.Logging return _log; } } - internal static Logger updater => log.GetChildLogger("Upater"); + internal static Logger updater => log.GetChildLogger("Updater"); internal static Logger libLoader => log.GetChildLogger("LibraryLoader"); internal static Logger loader => log.GetChildLogger("Loader"); internal static bool LogCreated => _log != null;