From 6c0eee8cc82814b00cf26ed239f6a41b80aae041 Mon Sep 17 00:00:00 2001 From: Guillaume Bort Date: Thu, 20 Jan 2011 10:47:47 +0100 Subject: [PATCH] Remove annoying log from WSAsync --- 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 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)); }