| | | 
Advanced StrataFrame User
       
Group: StrataFrame Users Last Login: Today @ 3:42:31 PM Posts: 646, Visits: 22,710 |
| I have added my own error logging routine to UnhandledExceptionFound, currently among other things it writes errors to the application log.
Is there a way to create an event log specific to my application to write errors to, or do I have to use one of the Windows default log types?
I have looked and didnt find anything and figured I would post here before I gave up because I would really like to segregate my applications errors to their own event log.
Thanks |
| | | | 
Advanced StrataFrame User
       
Group: StrataFrame Users Last Login: Today @ 3:42:31 PM Posts: 646, Visits: 22,710 |
| application log should read "Windows Event Logs"
I am using
Dim objEventLog As New EventLog()
objEventLog.WriteEntry(Entry, EventType)
|
| | | | 
StrataFrame Developer

Group: StrataFrame Developers Last Login: 09/26/2008 8:30:36 AM Posts: 2,685, Visits: 1,886 |
| I believe there is only one Application event log, but you can specify the "source" for the entries that should allow you to separate your entries from other applications.
www.bungie.net |
| | | | 
Advanced StrataFrame User
       
Group: StrataFrame Users Last Login: Today @ 3:42:31 PM Posts: 646, Visits: 22,710 |
| | OK thanks Ben, that was my conclusion. |
| | | | 
StrataFrame Developer

Group: StrataFrame Developers Last Login: 09/26/2008 8:30:36 AM Posts: 2,685, Visits: 1,886 |
| | |
|
|