Skip to content

Commit

Permalink
Merge pull request #116 from jmpascal/master
Browse files Browse the repository at this point in the history
Remove URL Logging.
  • Loading branch information
JM.PASCAL committed Mar 30, 2015
2 parents 28fa764 + 8a65964 commit 857ae81
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import android.util.Log;

public class NetworkHttpInvoker implements HttpInvoker
{
private static final Logger LOG = LoggerFactory.getLogger(DefaultHttpInvoker.class);
Expand Down Expand Up @@ -98,7 +96,7 @@ protected Response invoke(UrlBuilder url, String method, String contentType, Map
try
{
// log before connect
Log.d("URL", url.toString());
//Log.d("URL", url.toString());
if (LOG.isDebugEnabled())
{
LOG.debug(method + " " + url);
Expand Down

0 comments on commit 857ae81

Please sign in to comment.