3
votes
2answers
144 views
Custom event logging for Javascript frameworks
Imagine I have a web application with nice components coded up with your favorite Javascript library. I make heavy use of custom events to reduce the dependencies between these com …
3
votes
1answer
377 views
How do I write to a custom Windows event log?
I'm attempting to set up basic logging to the windows event log in .net via System.Diagnostics.EventLog, but I'm failing to see any events actually getting written to the log. Con …
0
votes
1answer
38 views
Setting maximum event log size
Why is the following code not working?
if(EventLog.Exists("Foo"))
{
EventLog.Delete("Foo");
}
if(EventLog.Exists("Foo") == false)
{
EventLog.CreateEventSource("Foo", "F …
