CommonsRequestLoggingFilter not logging when override
The following code does not log when I add in the override methods. If I replace the code without the override the log works fine.
Has seen in multiple conversations, I added the following properties:
logging.level.com.mypackage.myproject.RequestLoggingConfiguration=TRACE(or DEBUG) logging.level.org.springframework.web.filter.CommonsRequestLoggingFilter=TRACE
Is there an automatic way of logging in spring boot
I had a wild idea, if there would be a way we can automatically log before and after while doing a repository layer function. Like before update the entity was like this and after update entity is like this. I would want some generic for all repository classes in my application and not write explicitly for every repository class. Is this possible in spring boot ?