0

I m working with a large project whith meets in mvc c# and looking for methods (plugins for visual studio, addons, frameworks) for tracking object in controller,views during the app works. Any methods exist for that ? I do not want use logging via nlog or log4net.

  • Not clear on exactly what you are looking for, but [Stackify Prefix](http://stackify.com/prefix) gives you a lot of profiling data without instrumenting your code. – Crowcoder Dec 03 '16 at 14:39
  • See http://stackoverflow.com/questions/8614157/current-possibilities-for-tracing-program-flow-in-c – Sergey Vlasov Dec 04 '16 at 04:17

1 Answers1

1

Try Application Insights (https://learn.microsoft.com/en-us/azure/application-insights/app-insights-overview). It integrated very nice in Visual Studio, has a free plan as well and is created for scenario's like this.

Just to satisfy my curiosity, why do you not want to use a logging framework?

Peter Bons
  • 26,826
  • 4
  • 50
  • 74