Back to project page Apocalypse-Defense.
The source code is released under:
MIT License
If you think the Android project Apocalypse-Defense 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 com.apocalypsedefense.core; // ww w .j ava 2 s . co m /** * Interface for logging so that we can use printlns on PC and Log in Android. * @author Pat */ public interface LogAdapter { /** * Send a DEBUG log message. * @param tag Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs. * @param msg The message you would like logged. */ public void d(String tag, String msg); }