Tagged Questions
The custom-eventlog tag has no wiki summary.
3
votes
2answers
543 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 components so you can ...
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");
...
0
votes
1answer
46 views
Windows Server 2008 won't let me create a log source, telling me it already exists (it does not)
I have a small winforms app that creates a new event log source.
I run it as administrator for the elevated privileges.
The code checks to ensure the specified event log does not exist and then ...
0
votes
3answers
520 views
Custom TraceListener Windows application
So far in my application i am logging all the trace events to a file on my hard drive.
I now want to enhance it in the form of a separate windows trace application which listens
to the trace from ...
0
votes
2answers
446 views
Cannot open log for source {0} on Windows 2003 Server
I am having a huge problem with the eventlog on my server. Right let me first of all explain the setup.
I have a domain setup with 2 computers
One computer is running IIS the other is a workstation. ...