Skip to content

Commit ba36a53

Browse files
authored
Update RtLogs.java
1 parent 9c873d5 commit ba36a53

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/main/java/com/amihaiemil/docker/RtLogs.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ public String fetch() throws IOException, UnexpectedResponseException {
125125
@Override
126126
public Reader follow()
127127
throws IOException, UnexpectedResponseException {
128+
System.out.println("Before Request instantiation!");
128129
final HttpGet follow = new HttpGet(
129130
new UncheckedUriBuilder(this.baseUri.toString())
130131
.addParameter("follow", "true")
@@ -136,6 +137,8 @@ public Reader follow()
136137
)
137138
.build()
138139
);
140+
System.out.println("After Request instantiation!");
141+
System.out.println("Where is JsonParsingException?");
139142
return this.client.execute(
140143
follow,
141144
new ReadStream(

0 commit comments

Comments
 (0)