Merge branch '6.0.x'

# Conflicts:
#	spring-messaging/src/main/java/org/springframework/messaging/handler/HandlerMethod.java
#	spring-web/src/main/java/org/springframework/web/method/HandlerMethod.java
This commit is contained in:
Juergen Hoeller
2023-07-04 21:40:11 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -189,7 +189,7 @@ public class HandlerMethod extends AnnotatedMethod {
* Return a short representation of this handler method for log message purposes.
*/
public String getShortLogMessage() {
return getBeanType().getName() + "#" + getMethod().getName() +
return getBeanType().getSimpleName() + "#" + getMethod().getName() +
"[" + getMethod().getParameterCount() + " args]";
}