我想看看某些方法何时在本机模块中被触发。
我已经进口了
import android.util.Log;
在我想将日志写入的 java 文件中。
这是我想记录的方法。
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);
}
我试图添加
Log.d("is this thing working???", "I certainly hope so");
方法里面。
我打开了 Android Studio,正在查看 Logcat 窗口。即使我知道我已经访问了该方法,我也没有在任何地方看到我的消息。