Improve log statement readability

This commit is contained in:
Vishnu Mohandas 2020-06-18 01:17:49 +05:30
parent 46fcd8607f
commit d178b0838d

View file

@ -27,7 +27,7 @@ class EndpointFinder {
prefix += ipSplit[index] + ".";
}
}
logger.info(prefix);
logger.info(prefix + "*");
for (int i = 1; i <= 255 && _shouldContinueSearch; i++) {
var endpoint = prefix + i.toString();