Skip to content

Commit f7b82bd

Browse files
committed
Added debugging output
1 parent b33bcfc commit f7b82bd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/io/codebottle/api/rest/CodeBottleRequest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ public CompletableFuture<T> then(Function<JsonNode, T> remap) {
9494
return CompletableFuture.supplyAsync(() -> {
9595
final Request request = httpRequest.build();
9696

97+
System.out.println("Requesting: " + request.method() + " @ " + request.url().toString());
98+
9799
try {
98100
final Call call = httpClient.newCall(request);
99101

0 commit comments

Comments
 (0)