From 2fcc15bd3a9e33e877bda6e66e1c94b74b3a97a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Andr=C3=A9?= Date: Sun, 5 Aug 2018 09:24:30 -0300 Subject: [PATCH] Fix Log Issue --- SRL/FileWorker.cs | 4 ++-- SRL/Output.cs | 8 ++++---- SRL/Reloader.cs | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/SRL/FileWorker.cs b/SRL/FileWorker.cs index 5663034..78364ae 100644 --- a/SRL/FileWorker.cs +++ b/SRL/FileWorker.cs @@ -235,7 +235,7 @@ private static void LoadConfig() { } if (Settings.DecodeFromInput) { - Log("Enabling Character Reloader Decoding From Input..."); + Log("Enabling Character Reloader Decoding From Input...", true); DecodeCharactersFromInput = true; } @@ -257,7 +257,7 @@ private static void LoadConfig() { if (Settings.NoReload) { NoReload = true; - Warning("String Injection Disabled by User..."); + Warning("String Injection Disabled by User...", true); } if (Settings.RemoveViolations) { diff --git a/SRL/Output.cs b/SRL/Output.cs index 5b944c7..87780f3 100644 --- a/SRL/Output.cs +++ b/SRL/Output.cs @@ -180,18 +180,18 @@ internal static void CheckArguments() { case "debugstring": case "debugencoding": case "encodingtest": - Log("String Deubugger Enabled"); + Log("String Deubugger Enabled", true); LogAll = true; break; case "loginput": case "login": - Log("Input Log Enabled"); + Log("Input Log Enabled", true); LogInput = true; break; case "logout": case "logoutput": - Log("Output Log Enabled"); + Log("Output Log Enabled", true); LogOutput = true; break; case "dumptext": @@ -201,7 +201,7 @@ internal static void CheckArguments() { case "detecttext": case "detecttxt": Debugging = true; - Log("String Dumping Filter Enabled"); + Log("String Dumping Filter Enabled", true); DumpStrOnly = true; break; case "about": diff --git a/SRL/Reloader.cs b/SRL/Reloader.cs index 1c0785c..6537149 100644 --- a/SRL/Reloader.cs +++ b/SRL/Reloader.cs @@ -52,7 +52,7 @@ internal static string StrMap(string Input, IntPtr InputPtr, bool Native) { string Str = SimplfyMatch(Input); if (LogAll || LogInput) { - Log("Input: {0}", false, Input); + Log("Input: {0}", true, Input); } if (InCache(Str) && DialogFound) {