CSharpRoboticsLib.Utility.Logger.Save C# (CSharp) Method

Save() public static method

Saves the log as a text file
public static Save ( string filePath ) : void
filePath string
return void
        public static void Save(string filePath)
        {
            //I have no idea if this will work on the roborio.
            File.WriteAllText(filePath, ToString());
        }