Error Reporting¶
Very early in your app, say first thing in Main setup the Error Reporting as follows:
1 using Palaso.Reporting
2
3 private static void SetupErrorHandling()
4 {
5 Logger.Init();
6 // TODO Change this address
7 ErrorReport.EmailAddress = "nowhere@palaso.org";
8 ErrorReport.AddStandardProperties();
9 ExceptionHandler.Init();
10 }