AEMManager.AemActions.OpenLogFile C# (CSharp) Method

OpenLogFile() private static method

private static OpenLogFile ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private static void OpenLogFile(object sender, EventArgs e)
        {
            MenuItem item = (MenuItem)sender;
              AemInstance instance = Program.GetActionInstance(sender);
              if (instance == null) {
            return;
              }
              OpenLogViewer(instance.PathWithoutFilename + @"\crx-quickstart\logs\" + item.Text, instance.Name + " - " + item.Text);
        }