Back to project page X3n0break.
The source code is released under:
GNU General Public License
If you think the Android project X3n0break 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.x3n0m0rph59.breakout; /* www.j a v a 2 s . c om*/ import com.badlogic.gdx.Gdx; public final class Logger { public static void debug(String text) { Gdx.app.debug("X3n0break", text); } public static void error(String text) { Gdx.app.error("X3n0break", text); } }