diff options
-rwxr-xr-x | sl/demo/Ice/hello/Page.xaml.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sl/demo/Ice/hello/Page.xaml.cs b/sl/demo/Ice/hello/Page.xaml.cs index 5c37b9ec7b3..b124730a49a 100755 --- a/sl/demo/Ice/hello/Page.xaml.cs +++ b/sl/demo/Ice/hello/Page.xaml.cs @@ -58,7 +58,7 @@ namespace helloC }
catch (Exception ex)
{
- _tb.Text = ex.ToString();
+ _tb.Text = "Call failed with exception:\n" + ex.ToString();
return;
}
}
|