0
bancentral created
Hello guys,
I want to know if there is a way to log only in the text file and not log in DataBase (AbpAuditLogs)
2 Answer(s)
-
0
Then disable it
public class MyModule : AbpModule { public override void PreInitialize() { Configuration.Auditing.IsEnabled = false; } }
https://aspnetboilerplate.com/Pages/Documents/Audit-Logging#configuration
-
0
Otherwise, you can implement your own
CustomAuditingStore
(save audit log into file instead kf repository) to replace the default AuditingStore