/ Published in: C#
Output your errors to the Windows event log. Very effective to output from try catch blocks.
Expand |
Embed | Plain Text
using System.Diagnostics; EventLog.WriteEntry("Error Title", exp.Message, System.Diagnostics.EventLogEntryType.Error);
You need to login to post a comment.
