]> Pileus Git - ~andy/spades/blob - src/org/pileus/spades/Os.java
Add IRC Service and update UI
[~andy/spades] / src / org / pileus / spades / Os.java
1 package org.pileus.spades;
2
3 import android.util.Log;
4
5 public class Os
6 {
7         /* Debugging */
8         public static void debug(String txt, Exception e)
9         {
10                 Log.d("Spades", txt, e);
11         }
12         public static void debug(String txt)
13         {
14                 Log.d("Spades", txt);
15         }
16 }