Obsivus
Obsivus

Reputation: 8359

Logging tools for ASP.NET MVC project?

I am looking for a logging service that can logg things, example if a AD user change a value on a entity object by changing the value inside the DDL and then submits the form in the view it should get logged somewhere.

like:

"Robert Johnson changed value on column_Race to "cat" on this column_name."

Any kind of tips is appreciated!

Thanks in advance!

Upvotes: 2

Views: 862

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1039120

You could use the built-in tracing capabilities of the .NET framework. Another possibility is to use a third party logging framework such as log4net which is a commonly used logging framework for .NET.

Upvotes: 1

Related Questions