I want to see when certain methods get fired inside a native module.
I've imported
import android.util.Log;
in the java file that I want to write my log to.
Here's the method I would like to log.
public void play(int frequency, double duration, double amplitude, int mode) {
BlueManager blueManager = BLueServiceManager.getSharedBlueManager();
if (blueManager == null || !blueManager.isConnected()) {
return;
}
byte actualFreq = (byte) (frequency / EQ_STEP_SIZE);
short actualDuration = (short) (duration * 1800);
blueManager.playTone(actualFreq, actualDuration, amplitude);
}
I've attempted to add
Log.d("is this thing working???", "I certainly hope so");
inside the method.
I have Android Studio open and I'm looking at the Logcat window. I don't see my message anywhere even though I know that I've accessed that method.

