diff --git a/framework/src/play/libs/ws/WSAsync.java b/framework/src/play/libs/ws/WSAsync.java index 500964a641..b029509e18 100644 --- a/framework/src/play/libs/ws/WSAsync.java +++ b/framework/src/play/libs/ws/WSAsync.java @@ -111,7 +111,6 @@ protected WSAsyncRequest(String url) { public HttpResponse get() { this.type = "GET"; sign(); - Logger.info(url); try { return new HttpAsyncResponse(prepare(httpClient.prepareGet(url)).execute().get()); } catch (Exception e) { @@ -125,7 +124,6 @@ public HttpResponse get() { public Future getAsync() { this.type = "GET"; sign(); - Logger.info(url); return execute(httpClient.prepareGet(url)); }