CmisSync.Controller.ShowLog C# (CSharp) Method

ShowLog() public method

Open the log file so that the user can check what is going on, and send it to developers.
public ShowLog ( string path ) : void
path string Path to the log file
return void
        public void ShowLog(string path)
        {
            var p = new Process();
            p.StartInfo.FileName = path;
            p.StartInfo.UseShellExecute = true;
            p.Start();
        }
    }