diff --git a/framework/src/play/libs/ws/WSAsync.java b/framework/src/play/libs/ws/WSAsync.java index 03caba10e2..a3cbc5131b 100644 --- a/framework/src/play/libs/ws/WSAsync.java +++ b/framework/src/play/libs/ws/WSAsync.java @@ -107,7 +107,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) { @@ -121,7 +120,6 @@ public HttpResponse get() { public Future getAsync() { this.type = "GET"; sign(); - Logger.info(url); return execute(httpClient.prepareGet(url)); }