FintechOS Logging
FintechOS logs all CRUD operations executed in the platform, by default, in a separate database schema named EbsLogs.UniversalLog.
Database administrators can restrict read access for this schema and grant insert rights only for the SQL login used by the FintechOS platform.
How to Configure the Logging of CRUD Operations
To configure this feature, go to the web.config file and set the feature-universal-logging setting, as desired. By default, it is set to 0, that is, the feature is enabled.:
Copy
<configuration>
<appSettings>
...
<add key="feature-universal-logging" value="0|1|true|false"/>
</appSettings>
</configuration>