我想看看某些方法何时在本机模块内触发。
我已经导入
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窗口。即使知道已访问该方法,也看不到任何消息。