refactor(基础模块): 优化协议加载日志打印

This commit is contained in:
zhouhao 2023-04-20 10:10:23 +08:00
parent 32a3452f7b
commit 3f4297ed06
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public class LazyInitManagementProtocolSupports extends StaticProtocolSupports i
consumer.accept(e);
})
.onErrorResume((e) -> {
log.error("{} protocol[{}] error: {}", operation, definition.getId(), e);
log.error("{} protocol[{}] error: {}", operation, definition.getId(), e.getLocalizedMessage());
return Mono.empty();
})
.then();