From 69cba7145079e17e9a2681cbf7d808adb7145342 Mon Sep 17 00:00:00 2001 From: Erwan Loisant Date: Tue, 21 Dec 2010 16:31:01 +0100 Subject: [PATCH] Remove useless spew --- framework/src/play/libs/ws/WSAsync.java | 2 -- 1 file changed, 2 deletions(-) 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)); }