]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/utils/NetworkUtil.java
wrap Log.d calls, skipping them on non-debug builds
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / utils / NetworkUtil.java
index 12758b10cb4b3f127d5bf36cc4cf96f80e71f6ac..28663b6601cbfb6a5aa67c9a3fdab70b95e66c24 100644 (file)
@@ -18,7 +18,6 @@
 package net.ktnx.mobileledger.utils;
 
 import android.util.Base64;
-import android.util.Log;
 
 import net.ktnx.mobileledger.model.MobileLedgerProfile;
 
@@ -27,6 +26,8 @@ import java.net.HttpURLConnection;
 import java.net.URL;
 import java.nio.charset.StandardCharsets;
 
+import static net.ktnx.mobileledger.utils.Logger.debug;
+
 public final class NetworkUtil {
     private static final int thirtySeconds = 30000;
     public static HttpURLConnection prepareConnection(MobileLedgerProfile profile, String path)
@@ -35,7 +36,7 @@ public final class NetworkUtil {
         final boolean use_auth = profile.isAuthEnabled();
         if (!url.endsWith("/")) url += "/";
         url += path;
-        Log.d("network", "Connecting to " + url);
+        debug("network", "Connecting to " + url);
         HttpURLConnection http = (HttpURLConnection) new URL(url).openConnection();
         if (use_auth) {
             final String auth_user = profile.getAuthUserName();