diff --git a/Crypto Notepad/MainForm.cs b/Crypto Notepad/MainForm.cs index 44fa316..a49dfb4 100644 --- a/Crypto Notepad/MainForm.cs +++ b/Crypto Notepad/MainForm.cs @@ -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*/