如何在 Android 框架中打印日志消息 [英] How to print log messages with in Android framework

查看:39
本文介绍了如何在 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 框架中打印日志消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆