aboutsummaryrefslogtreecommitdiff
path: root/mobileapp/src/smoots/udesign/util/PhoneDebugger.java
diff options
context:
space:
mode:
Diffstat (limited to 'mobileapp/src/smoots/udesign/util/PhoneDebugger.java')
-rwxr-xr-xmobileapp/src/smoots/udesign/util/PhoneDebugger.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/mobileapp/src/smoots/udesign/util/PhoneDebugger.java b/mobileapp/src/smoots/udesign/util/PhoneDebugger.java
deleted file mode 100755
index 5458ead..0000000
--- a/mobileapp/src/smoots/udesign/util/PhoneDebugger.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package smoots.udesign.util;
-
-import android.util.Log;
-
-/**
- * Util Class for the purpose of debugging.
- *
- * @author Sun
- */
-public class PhoneDebugger {
- private static boolean DEBUG = true;
-
- /**
- * Add the error exception to the Android log
- * @param tag Tag for the log
- * @param e Exception error
- */
- public static void debug(String tag, Exception e) {
- if (DEBUG == true) {
- Log.d(tag, e.getMessage());
- }
- }
-}