I create event logs for asp.net projects error logging. I do it by adding a key in regedit, and then a sub-key.
Sometimes, I create a new key and sub-key, and instead of getting a new, empty event log, I see in the event viewer that it's showing me the logs from a different project. I'm not able to find a pattern as to when this happens.
Has anyone encountered such a problem? Am I doing something wrong?
|
|
|
|||
|
|
|
|
It seems that the problem was that we had already created an event log with that name, and even though we deleted it, it didn't help. The solution was to create an event log with a different name. |
||
|
|
|
|
You probably want to use the EventLog.CreateEventSource API to do this - it should take care of any details for you. A quick read thru the docs seems to show that the 1st 8 characters are checked for uniqueness...perhaps that's where your issue is? Edit: From Reflector, the API does this...
|
||||
|
