Skip to content
Snippets Groups Projects
Commit 11e51e26 authored by dgelessus's avatar dgelessus
Browse files

Remove a few log messages during probcli startup

parent 899acc03
Branches
No related tags found
No related merge requests found
Pipeline #138615 passed
......@@ -206,7 +206,6 @@ public final class CliStarter {
Matcher portMatcher = CLI_PORT_PATTERN.matcher(line);
if (portMatcher.matches()) {
portTemp = Integer.parseInt(portMatcher.group(1));
Logger.info("Received port number from CLI: " + portTemp);
}
Matcher userInterruptReferenceMatcher = CLI_USER_INTERRUPT_REFERENCE_PATTERN.matcher(line);
......@@ -217,7 +216,6 @@ public final class CliStarter {
Logger.info("This ProB build has user interrupt support disabled. Interrupting ProB may not work as expected.");
} else {
userInterruptReferenceTemp = Long.parseLong(userInterruptReferenceString);
Logger.info("Received user interrupt reference from CLI: " + userInterruptReferenceTemp);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment