Added Console Logging
Added Console Logging
Puts console output into Logs.txt
diff --git a/PokemonGo/RocketAPI/Console/Program.cs b/PokemonGo/RocketAPI/Console/Program.cs
index 37abe90..dc27e12 100644
--- a/PokemonGo/RocketAPI/Console/Program.cs
+++ b/PokemonGo/RocketAPI/Console/Program.cs
@@ -82,6 +82,7 @@ namespace PokemonGo.RocketAPI.Console
ConsoleColor originalColor = System.Console.ForegroundColor;
System.Console.ForegroundColor = color;
System.Console.WriteLine(text);
+ File.AppendAllText(AppDomain.CurrentDomain.BaseDirectory + @"\Logs.txt", text + "\n");
System.Console.ForegroundColor = originalColor;
}
You may download the files in Public Git.