How to print log messages with in Android framework(如何在 Android 框架中打印日志消息)
问题描述
I am trying to print log messages within core Android framework files. For example, I tried logging messages within MediaRecorderClient.cpp
under frameworksasemedialibmediaplayerservice
. I've tried LOGV
, LOGE
, LOGD
, printf
, and __android_log_print
, without any success.
Which command should I use to print log messages?
Log should be used, but it will print to logcat not system print.
Example:
Log.d("filter", example text); // filter is any tag you want to use as filter
You can open logcat in eclipse from window-show view -> other -> android -> logcat
这篇关于如何在 Android 框架中打印日志消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!