log version check

This commit is contained in:
Milos Kozak 2018-08-17 21:58:00 +02:00
parent 1b6e54f8a8
commit a6e25df543

View file

@ -80,8 +80,12 @@ public class VersionChecker {
while ((line = bufferedReader.readLine()) != null) { while ((line = bufferedReader.readLine()) != null) {
Matcher m = p.matcher(line); Matcher m = p.matcher(line);
if (m.matches()) if (m.matches()) {
log.debug("+++ " + line);
return line; return line;
} else {
log.debug("--- " + line);
}
} }
inputStream.close(); inputStream.close();
return null; return null;