Best "error logging tool in ASP.NET ?
Best "error logging tool in ASP.NET ?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Riddhi ValechaPosted Apr 16, 2013, 7:01 AM
I have used this tool.
SmartInspect – the logging tool developed by my company Gurock Software.
Example-
using System; using Gurock.SmartInspect; public class EntryPoint { public static void Main(string[] args) { SiAuto.Si.Connections = @"file(filename=c:\log.sil)"; SiAuto.Si.Enabled = true; SiAuto.Main.LogMessage("This is a message!"); SiAuto.Main.LogError("This is an error!"); SiAuto.Main.LogValue("MyInt", 5); SiAuto.Main.LogSql("GetAllCustomers", "SELECT * FROM customers"); SiAuto.Main.LogObject("Main", SiAuto.Main); SiAuto.Main.Watch("MyWatch", 2); SiAuto.Main.Watch("MyWatch", 7); } }
--------------
You can find other tools details on -
http://www.dotnetlogging.com/
Hope this helps