log version check
This commit is contained in:
parent
1b6e54f8a8
commit
a6e25df543
1 changed files with 5 additions and 1 deletions
|
@ -80,8 +80,12 @@ public class VersionChecker {
|
|||
|
||||
while ((line = bufferedReader.readLine()) != null) {
|
||||
Matcher m = p.matcher(line);
|
||||
if (m.matches())
|
||||
if (m.matches()) {
|
||||
log.debug("+++ " + line);
|
||||
return line;
|
||||
} else {
|
||||
log.debug("--- " + line);
|
||||
}
|
||||
}
|
||||
inputStream.close();
|
||||
return null;
|
||||
|
|
Loading…
Reference in a new issue