Kevin,
That's a particularly nasty problem with services that write to the
event log. When the log is full there the write will fail and generate
an exception as expected. A lot of people usually put a try-catch
block that will catch all exceptions in a last resort attempt at
keeping the service running. If that exception information is then
written to the event log...Catch-22.
Brian
(E-Mail Removed) wrote:
> It turns out the problem was an event log that was full. While
> debugging it had entered a loop that it wasn't getting out of and I put
> a "Write to event log" action there, and when it finally got through,
> it had a ton of events to add to the log, which filled up which
> explains why there were no events since the event earlier in the
> morning. Once I cleared the event log and took out the statement that
> wrote the message in the loop it is fine.