|
@@ -1010,10 +1010,12 @@ public class NameNode extends ReconfigurableBase implements
|
|
LOG.warn("ServicePlugin " + p + " could not be started", t);
|
|
LOG.warn("ServicePlugin " + p + " could not be started", t);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- LOG.info(getRole() + " RPC up at: " + getNameNodeAddress());
|
|
|
|
|
|
+ LOG.info("{} RPC up at: {}.", getRole(), getNameNodeAddress());
|
|
if (rpcServer.getServiceRpcAddress() != null) {
|
|
if (rpcServer.getServiceRpcAddress() != null) {
|
|
- LOG.info(getRole() + " service RPC up at: "
|
|
|
|
- + rpcServer.getServiceRpcAddress());
|
|
|
|
|
|
+ LOG.info("{} service RPC up at: {}.", getRole(), rpcServer.getServiceRpcAddress());
|
|
|
|
+ }
|
|
|
|
+ if (rpcServer.getLifelineRpcAddress() != null) {
|
|
|
|
+ LOG.info("{} lifeline RPC up at: {}.", getRole(), rpcServer.getLifelineRpcAddress());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|