Expected Behavior Currently, the method RequestMatcherDelegatingAuthorizationManager.check is logging a message that doesn't provide much value.

When I enable the TRACE log level, I expect to see detailed logs that provide valuable information for troubleshooting purposes.

Current Behavior The system is currently logging messages similar to this: 2024-04-03T14:38:42.649-03:00 TRACE 488138 --- [io-8080-exec-10] estMatcherDelegatingAuthorizationManager : Authorizing SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.savedrequest.SavedRequestAwareWrapper@5dff36af]

Logging a class that does not override the toStringmethod merely populates the logs with uninformative content. Consider modifying this log instruction to include the URL being authorized, providing more context for troubleshooting.

https://github.com/spring-projects/spring-security/blob/9b79f68b654affeefbf74eaef6076e323641974c/web/src/main/java/org/springframework/security/web/access/intercept/RequestMatcherDelegatingAuthorizationManager.java#L74