FlowingCode / backend-core

Commons utilities for back-end enterprise features
Apache License 2.0
4 stars 1 forks source link

Add CRUD Logging in Commons Backend #73

Open brunoagretti opened 1 year ago

brunoagretti commented 1 year ago

Add logging functionality to the CRUD operations in the Commons Backend project. Currently, some appjars have implemented this feature by overriding the methods in the CrudService interface and adding logging statements. However, it would be useful to have a mechanism, such as a filter, to apply logging to all CRUD operations in a centralized manner. Alternatively, a new interface could be created with default implementations that log the CRUD operations and then call the original method. This feature would provide better visibility into the operations performed on the backend components and facilitate debugging and troubleshooting.