Azavea.NijPredictivePolicing.AcsAlchemistGui.MainForm.btnSaveMessageLog_Click C# (CSharp) Method

btnSaveMessageLog_Click() private method

TODO: This is not yet implemented, providing a helpful error message
private btnSaveMessageLog_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void btnSaveMessageLog_Click(object sender, EventArgs e)
        {
            txtMessageLogFilePath.Text = Path.Combine(FileUtilities.GetApplicationPath(), "logs");

            _log.Debug("Redirecting Log output to a specified file is not yet supported by this interface.");
            _log.DebugFormat("You can find a copy of the logs here: {0}", txtMessageLogFilePath.Text);

            //saveFileMessageLog.ShowDialog();
            //txtMessageLogFilePath.Text = saveFileMessageLog.FileName;
        }