summaryrefslogtreecommitdiff
path: root/app/src/main/java/se/leap/bitmaskclient/eip/Gateway.java
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2015-03-24 19:29:55 +0100
committerParménides GV <parmegv@sdf.org>2015-03-24 19:29:55 +0100
commite54c7a5407da82feb6dc6fb0de5e2d9f3756b651 (patch)
tree1dc70ce1b4542b9ae81aa6b4ad56e370dd831465 /app/src/main/java/se/leap/bitmaskclient/eip/Gateway.java
parentb87f082fe0e9c05cf45c56b510a2c4000133b572 (diff)
Remove all Logs.
In the near future, I should implement an error feedback mechanism (ideally using ics-openvpn's log view), and avoid the e.printStackTrace() and Log.d("","") without losing information.
Diffstat (limited to 'app/src/main/java/se/leap/bitmaskclient/eip/Gateway.java')
-rw-r--r--app/src/main/java/se/leap/bitmaskclient/eip/Gateway.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/app/src/main/java/se/leap/bitmaskclient/eip/Gateway.java b/app/src/main/java/se/leap/bitmaskclient/eip/Gateway.java
index b2c7af8c..ff7d011e 100644
--- a/app/src/main/java/se/leap/bitmaskclient/eip/Gateway.java
+++ b/app/src/main/java/se/leap/bitmaskclient/eip/Gateway.java
@@ -16,8 +16,6 @@
*/
package se.leap.bitmaskclient.eip;
-import android.util.*;
-
import com.google.gson.*;
import org.json.*;
@@ -106,12 +104,10 @@ public class Gateway {
return cp.convertProfile();
} catch (ConfigParser.ConfigParseError e) {
// FIXME We didn't get a VpnProfile! Error handling! and log level
- Log.v(TAG, "Error creating VPNProfile");
e.printStackTrace();
return null;
} catch (IOException e) {
// FIXME We didn't get a VpnProfile! Error handling! and log level
- Log.v(TAG, "Error creating VPNProfile");
e.printStackTrace();
return null;
}