internal void commander_ExceptionLogged(object sender, NpmExceptionEventArgs e) {
     Application.Current.Dispatcher.BeginInvoke(
         new Action(() => WriteLines(ErrorHelper.GetExceptionDetailsText(e.Exception), true)));
 }
 private void NpmController_ExceptionLogged(object sender, NpmExceptionEventArgs e) {
     WriteNpmLogToOutputWindow(ErrorHelper.GetExceptionDetailsText(e.Exception));
 }