We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e73f55e commit d9c7267Copy full SHA for d9c7267
src/main/java/de/rub/nds/tls/subject/docker/DockerTlsInstance.java
@@ -240,7 +240,7 @@ public String getId() {
240
241
public String getLogs() throws InterruptedException {
242
FrameHandler fh = new FrameHandler();
243
- DOCKER.logContainerCmd(getId()).exec(fh);
+ DOCKER.logContainerCmd(getId()).withStdOut(true).withStdErr(true).exec(fh);
244
fh.awaitCompletion();
245
String[] lines = fh.getLines();
246
// TODO optimize the following into the frame handler itself
0 commit comments