File tree 1 file changed +3
-4
lines changed
spring-web/src/main/java/org/springframework/web/context/request/async
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -387,16 +387,15 @@ private void setConcurrentResultAndDispatch(@Nullable Object result) {
387
387
synchronized (WebAsyncManager .this ) {
388
388
if (!this .state .compareAndSet (State .ASYNC_PROCESSING , State .RESULT_SET )) {
389
389
if (logger .isDebugEnabled ()) {
390
- logger .debug ("Async result already set: " +
391
- "[" + this .state .get () + "], ignored result: " + result +
392
- " for " + formatUri (this .asyncWebRequest ));
390
+ logger .debug ("Async result already set: [" + this .state .get () +
391
+ "], ignored result for " + formatUri (this .asyncWebRequest ));
393
392
}
394
393
return ;
395
394
}
396
395
397
396
this .concurrentResult = result ;
398
397
if (logger .isDebugEnabled ()) {
399
- logger .debug ("Async result set to: " + result + " for " + formatUri (this .asyncWebRequest ));
398
+ logger .debug ("Async result set for " + formatUri (this .asyncWebRequest ));
400
399
}
401
400
402
401
if (this .asyncWebRequest .isAsyncComplete ()) {
You can’t perform that action at this time.
0 commit comments