Tagged Questions

3
votes
1answer
998 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. Consider the following ...
1
vote
1answer
483 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", "Foo"); ...