From e544b0f199ce1aaba787f6e6c937f587d3223396 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Fri, 2 Aug 2019 20:32:05 +0200 Subject: [PATCH] Changed Logging Functionality (#3) Added check for debug build --- src/Loader.cs | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/Loader.cs b/src/Loader.cs index 5384686..baaae82 100644 --- a/src/Loader.cs +++ b/src/Loader.cs @@ -16,6 +16,13 @@ namespace ModLoader //UnityEngine.Debug.Log("[BWML]" + output); } + public static void DebugLog(string output) + { +#if DEBUG + Log(output); +#endif // DEBUG + } + static void FindMods(DirectoryInfo path) { FileInfo[] files = path.GetFiles("*.dll"); @@ -27,7 +34,7 @@ namespace ModLoader Type[] modType = modDll.GetTypes(); foreach (Type t in modType) { - Log("Found type in " + file.Name + ": " + t.Name); + DebugLog("Found type in " + file.Name + ": " + t.Name); if (t.IsClass && t.IsSubclassOf(typeof(MonoBehaviour))) { loadedMods.Add(modObjects.AddComponent(t), file); @@ -69,8 +76,8 @@ namespace ModLoader string modsPath = Path + "\\Mods"; string assetsPath = modsPath + "\\Assets"; - Log("Dll dir: "+Path); - Log("Mods dir: "+modsPath); + DebugLog("Dll dir: "+Path); + DebugLog("Mods dir: "+modsPath); if (!Directory.Exists(modsPath)) { @@ -90,8 +97,7 @@ namespace ModLoader FindMods(d); foreach(Component mod in loadedMods.Keys) { - Log(mod.name); - Log("Location: "+ loadedMods[mod].Name); + Log("Mod \"" + mod.name + "\" loaded from \"" + loadedMods[mod].Name + "\""); } Log("All Mods have been Loaded!"); modObjects.AddComponent();