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