Skip to content

Commit 79e31ef

Browse files
committed
Minor adding more logging
1 parent 1402a5a commit 79e31ef

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

ClassUtils.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,10 +415,12 @@ public static void FileOpenFromMenu(object sender, string file)
415415
object opt = (sender as ToolStripMenuItem).Tag;
416416
if (opt != null)
417417
{
418+
App.PrintLogMessage("Exec: " + opt.ToString() + " " + file, MessageType.General);
418419
Process.Start(opt.ToString(), file);
419420
return;
420421
}
421422
}
423+
App.PrintLogMessage("Exec: " + file, MessageType.General);
422424
Process.Start(file);
423425
}
424426
catch (Exception ex)

0 commit comments

Comments
 (0)