0

Currently, Our Asp.Net web application is having 600+ pages. We have already implemented Microsoft Enterprise Library for Logging. But, problem is we have lot of navigation's in the application. When clients posted some issues, We are unable to find where code is failing.

So, Please suggest us some open source third party tool to Log every function call through out the application with less code changes in pages. Like, log every function from Global.asax or Some class in AppCode.

We have already using Log4net for some other purpose in the web application.

My idea is to log every function call without going to 600+ pages and make code changes. Is that possible?

Praveen
  • 71
  • 2
  • 9

1 Answers1

1

It looks like you need a new logging tool. I would recommend using ELMAH. All you have to do is to place tiny chunk of code in your global.asax file and that's it. ELMAH will log any errors in your application. It will tell the file name, function and exact line number where the error occurred. It also gives you a stack trace of all functions called prior. It's very powerful, simple to work with, and free.

Red
  • 818
  • 2
  • 14
  • 26