The following method is called in another application (Unity3D) however, I need debugging messages to see how far that other application can reach into this program, but I cannot seem to find the couple of messages in this code snippet anywhere...
I have checked quite a few posts on where I am supposed to see the outcomes of Log.e
and System.out.println
, but I cannot seem to find the "filters" they refer to; i.e. how I am supposed to filter the messages.
public class PluginClass
{
public static void Enable()
{
System.out.println("Entered the method...");
blah...
if ( blah... )
{
Log.e("app", "Entered if statement...");
}
blah...
}
}
Could someone please help me understand where and how to fish for these two "Entered" strings in the barrage of messages that Android Studio generates Avery second?