Update debug menu

This commit is contained in:
Alexander 2019-01-07 12:09:14 +02:00
parent 05e7a8e01e
commit e59ca61c59

View file

@ -1469,17 +1469,20 @@ private void ChkMatchWholeWord_CheckedChanged(object sender, EventArgs e)
private void MainVariablesToolStripMenuItem_Click(object sender, EventArgs e)
{
#if DEBUG
Debug.WriteLine("\ncurrentFilename: " + currentFilename);
var time = DateTime.Now;
string formattedTime = time.ToString("yyyy.MM.dd hh:mm:ss");
Debug.WriteLine("\nTime: " + formattedTime);
Debug.WriteLine("PublicVar.openFileName: " + PublicVar.openFileName);
Debug.WriteLine("filePath: " + filePath);
Debug.WriteLine("encryptionKey: " + PublicVar.encryptionKey.Get());
Debug.WriteLine("TypedPassword: " + TypedPassword.Value);
Debug.WriteLine("filePath: " + filePath);
Debug.WriteLine("cancelPressed: " + cancelPressed);
Debug.WriteLine("noExit: " + noExit);
Debug.WriteLine("keyChanged: " + PublicVar.keyChanged);
Debug.WriteLine("settingsChanged: " + PublicVar.settingsChanged);
Debug.WriteLine("okPressed: " + PublicVar.okPressed);
Debug.WriteLine("CustomRTB.Modified: " + CustomRTB.Modified);
#endif
#endif
}
/*Debug Menu*/