CP-11957: ssh console: Add UI elements to launch ssh

-changed exception logging format
This commit is contained in:
Gabor Apati-Nagy 2015-05-15 15:52:43 +01:00
parent 1463279c00
commit de6f92f39f

View File

@ -1526,10 +1526,9 @@ namespace XenAdmin.ConsoleView
}
catch (Exception ex)
{
log.Error(Messages.XENCENTER, ex);
log.Error("Error starting PuTTY.", ex);
var message = Messages.ERROR_PUTTY_LAUNCHING;
new ThreeButtonDialog(new ThreeButtonDialog.Details(SystemIcons.Error, message, Messages.XENCENTER)).ShowDialog(Parent);
new ThreeButtonDialog(new ThreeButtonDialog.Details(SystemIcons.Error, Messages.ERROR_PUTTY_LAUNCHING, Messages.XENCENTER)).ShowDialog(Parent);
}
}
}