Added Console Logging

Detective Squirrel [2016-07-23 19:31:21]
Added Console Logging

Puts console output into Logs.txt
Filename
PokemonGo/RocketAPI/Console/Program.cs
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.