]> Pileus Git - ~andy/spades/blob - src/org/pileus/spades/Os.java
767de064b81dc08cfaa2fd73d4ab9a3b10f1c6eb
[~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 }