Where is the exception logged?
try { Save(); } catch(Exception ex) { var client = new EventSource(); client.Write(ex.Message); }
Diagnostic trace listener
The Trace.aspx page
Event Log
Application Insights
The exception gets logged to Event Log. The Write method of the EventSource class allows you to log data to the Event Log.