ygerzhedovich commented on code in PR #933:
URL: https://github.com/apache/ignite-3/pull/933#discussion_r916881240
##########
modules/rest/src/main/java/org/apache/ignite/internal/rest/RestComponent.java:
##########
@@ -89,22 +89,23 @@ public void start() {
try {
port = portCandidate;
context = buildMicronautContext(portCandidate).start();
- log.info("REST protocol started successfully");
+ LOG.info("REST protocol started successfully");
return;
} catch (ApplicationStartupException e) {
BindException bindException = findBindException(e);
if (bindException != null) {
- log.error("Got exception " + bindException + " during node
start on port "
- + portCandidate + " , trying again");
+ LOG.info("Got exception during node start, going to try
again [port={}, reason={}]", portCandidate, portCandidate);
Review Comment:
incorrect reason
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]