Reputation: 8359
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
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