Browse Source

Ignore special variable related JVM output in CommandLineInvoker

Closes gh-5883
pull/5972/head
Vedran Pavic 10 years ago committed by Andy Wilkinson
parent
commit
a1ac934bee
  1. 4
      spring-boot-cli/src/it/java/org/springframework/boot/cli/infrastructure/CommandLineInvoker.java

4
spring-boot-cli/src/it/java/org/springframework/boot/cli/infrastructure/CommandLineInvoker.java

@ -144,7 +144,9 @@ public final class CommandLineInvoker { @@ -144,7 +144,9 @@ public final class CommandLineInvoker {
List<String> lines = new ArrayList<String>();
try {
while ((line = reader.readLine()) != null) {
lines.add(line);
if (!line.startsWith("Picked up ")) {
lines.add(line);
}
}
}
catch (IOException ex) {

Loading…
Cancel
Save