mirror of
https://github.com/hs-web/hsweb-framework.git
synced 2026-06-08 08:54:07 +08:00
优化日志打印
This commit is contained in:
@@ -23,7 +23,10 @@ public class CompositeReactiveAuthenticationManager implements ReactiveAuthentic
|
||||
.stream()
|
||||
.map(manager -> manager
|
||||
.authenticate(request)
|
||||
.onErrorResume((err) -> Mono.empty()))
|
||||
.onErrorResume((err) -> {
|
||||
log.warn("get user authenticate error", err);
|
||||
return Mono.empty();
|
||||
}))
|
||||
.collect(Collectors.toList()))
|
||||
.take(1)
|
||||
.next();
|
||||
|
||||
Reference in New Issue
Block a user