diff --git a/app/ui.js b/app/ui.js index 7f9bc04a..c9a43507 100644 --- a/app/ui.js +++ b/app/ui.js @@ -351,7 +351,9 @@ var UI; 'onDesktopName': UI.updateDesktopName}); return true; } catch (exc) { - UI.showStatus('Unable to create RFB client -- ' + exc, 'error'); + var msg = 'Unable to create RFB client -- ' + exc; + Util.Error(msg); + UI.showStatus(msg, 'error'); return false; } },