Back to project page helsinki-testbed2-android.
The source code is released under:
GNU General Public License
If you think the Android project helsinki-testbed2-android 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 fi.testbed2.android.app; /*from ww w . j ava2 s . co m*/ import fi.testbed2.Environment; import roboguice.util.Ln; /** * Logger class used in testbed app. */ public final class Logger { public static void debug(String s) { if (Environment.DEBUG) { Ln.e(s); } } }