Skip to content

Commit

Permalink
Remove annoying log from WSAsync
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumebort committed Jan 20, 2011
1 parent 9a15dde commit 6c0eee8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions framework/src/play/libs/ws/WSAsync.java
Expand Up @@ -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) {
Expand All @@ -121,7 +120,6 @@ public HttpResponse get() {
public Future<HttpResponse> getAsync() {
this.type = "GET";
sign();
Logger.info(url);
return execute(httpClient.prepareGet(url));
}

Expand Down

0 comments on commit 6c0eee8

Please sign in to comment.