]> Pileus Git - ~andy/spades/blobdiff - src/org/pileus/spades/Os.java
Add IRC Service and update UI
[~andy/spades] / src / org / pileus / spades / Os.java
diff --git a/src/org/pileus/spades/Os.java b/src/org/pileus/spades/Os.java
new file mode 100644 (file)
index 0000000..767de06
--- /dev/null
@@ -0,0 +1,16 @@
+package org.pileus.spades;
+
+import android.util.Log;
+
+public class Os
+{
+       /* Debugging */
+       public static void debug(String txt, Exception e)
+       {
+               Log.d("Spades", txt, e);
+       }
+       public static void debug(String txt)
+       {
+               Log.d("Spades", txt);
+       }
+}