Commit 387460c8 by Nepxion

修改提示信息

parent 34e2c786
...@@ -36,20 +36,20 @@ public class ConfigSubscriber { ...@@ -36,20 +36,20 @@ public class ConfigSubscriber {
Boolean remoteConfigEnabled = pluginContextAware.isRemoteConfigEnabled(); Boolean remoteConfigEnabled = pluginContextAware.isRemoteConfigEnabled();
if (!discoveryControlEnabled) { if (!discoveryControlEnabled) {
LOG.info("********** Discovery control is disabled, reject to accept remote push **********"); LOG.info("********** Discovery control is disabled, ignore to subscribe **********");
return; return;
} }
if (!remoteConfigEnabled) { if (!remoteConfigEnabled) {
LOG.info("********** Remote config is disabled, reject to accept remote push **********"); LOG.info("********** Remote config is disabled, ignore to subscribe **********");
return; return;
} }
Object object = event.getSource(); Object object = event.getSource();
if (object instanceof InputStream) { if (object instanceof InputStream) {
LOG.info("********** Remote config change has been retrieved **********"); LOG.info("********** Remote config change has been subscribed **********");
InputStream inputStream = (InputStream) object; InputStream inputStream = (InputStream) object;
configParser.parse(inputStream); configParser.parse(inputStream);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment