Differentiation between actions of system and user. -Abp Audit Logs
I generated Entity history change tables using Asp.net boilerplate but could not find anything about the automatic changes made by the system. I want to know if there is any way possible to differentiate the actions of user and systems?
Abp's audit logs are recorded through middleware. The actions performed by users are considered as requests and are included in the log. However, since the actions performed by the system itself are not requests, the middleware is not triggered and there is no log recording for these actions. In other words, the actions performed by the system are not already being logged.