mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Update debug menu
This commit is contained in:
parent
05e7a8e01e
commit
e59ca61c59
1 changed files with 7 additions and 4 deletions
|
|
@ -1469,11 +1469,14 @@ private void ChkMatchWholeWord_CheckedChanged(object sender, EventArgs e)
|
||||||
private void MainVariablesToolStripMenuItem_Click(object sender, EventArgs e)
|
private void MainVariablesToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
#if DEBUG
|
#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("encryptionKey: " + PublicVar.encryptionKey.Get());
|
||||||
Debug.WriteLine("TypedPassword: " + TypedPassword.Value);
|
Debug.WriteLine("TypedPassword: " + TypedPassword.Value);
|
||||||
Debug.WriteLine("filePath: " + filePath);
|
|
||||||
Debug.WriteLine("cancelPressed: " + cancelPressed);
|
|
||||||
Debug.WriteLine("noExit: " + noExit);
|
Debug.WriteLine("noExit: " + noExit);
|
||||||
Debug.WriteLine("keyChanged: " + PublicVar.keyChanged);
|
Debug.WriteLine("keyChanged: " + PublicVar.keyChanged);
|
||||||
Debug.WriteLine("settingsChanged: " + PublicVar.settingsChanged);
|
Debug.WriteLine("settingsChanged: " + PublicVar.settingsChanged);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue