Back to project page tijuana.
The source code is released under:
Copyright (c) 2013 Paul Estrada Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Sof...
If you think the Android project tijuana listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.ruboto; //from w w w . j a va 2 s. c o m public class Log { public static final String TAG = "RUBOTO"; public static void d(String message) { android.util.Log.d(TAG, message); } public static void i(String message) { android.util.Log.i(TAG, message); } public static void e(String message) { android.util.Log.e(TAG, message); } public static void e(String message, Throwable t) { android.util.Log.e(TAG, message, t); } }