Hi, I have enterprise logging & exception logging enabled in my web app. The web.config is set-up so everything should work. It has worked before on other servers because the trace.log file which is in the root of the application has trace information in it. I cleared my trace.log on my local machine to test that it is working when I get exceptions. I've created a test page which throws an exception. I then call ExceptionPolicy.HandleException(ex, "Exception Policy") and rethrow if required. My trace.log is staying empty so I can't work out why it isn't working. I'm fairly new to this, but I know this must have worked before. What I'm not sure is, will the exception be written to the log file anyway, or only as a result of the HandleException() call?
I'm struggling to debug why this isn't working.