简体   繁体   English

我在哪里可以读取到该日志,该日志显示ActivityManager:Killing 2225:com.android.email/u0a39(adj 900):删除任务

[英]Where can i read this log that ActivityManager: Killing 2225:com.android.email/u0a39 (adj 900): remove task

I'm searching where can I read this log. 我正在搜索在哪里可以读取此日志。

03-29 02:47:31.249   774   795 I ActivityManager: Displayed com.android.email/.activity.setup.AccountSetupFinal: +120ms
03-29 02:47:34.014   774  1200 I ActivityManager: START u0 {flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10023 on display 0
03-29 02:47:35.488   774   785 I ActivityManager: Killing 2225:com.android.email/u0a39 (adj 900): remove task

This log shows in ActivityManager but I can't find the source in ActivityManager.java in AOSP full source. 该日志显示在ActivityManager中,但是在AOSP完整源代码的ActivityManager.java中找不到源代码。

So would you tell me where is the log source file? 那么,您能告诉我日志源文件在哪里吗?

This logs are printed by the files under "frameworks/base/services/core/java/com/android/server/am/" . 该日志由“ frameworks / base / services / core / java / com / android / server / am /”下的文件打印。 For eg , the last line in your logs is printed by ProcessRecord.java 例如,日志中的最后一行由ProcessRecord.java打印

Slog.i(TAG, "Killing " + toShortString() + " (adj " + setAdj + "): " + reason);

where TAG is defined as : TAG定义为:

private static final String TAG = TAG_WITH_CLASS_NAME ? "ProcessRecord" : TAG_AM;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 我在哪里可以获得Android 1.5和1.6日历源代码? - Where can I obtain the Android 1.5 and 1.6 Calendar Source code? 在哪里可以下载Android音乐播放器的源代码? - Where I can download source code of Music Player of android? 在哪里可以找到修改Lollipop中的常规Android拨号器的代码? - Where can I find the code to modify the stock Android dialer in Lollipop? 我在哪里以及如何找到并下载Android 1.5源代码? - Where and how can I find and download Android 1.5 source code? 回购同步完成后,如何在AOSP(Android开放源代码项目)中看到git登录? - How can I see git log in AOSP (Android Open Source Project) after repo sync done? 在AOSP项目中,哪里可以找到Android HAL的实际实现源代码? - Where can I find source code of actual implementation of Android HALs in AOSP project? 我在哪里可以在Android源代码树中找到Google Now源代码核心 - Where can I find Google Now source core in Android source tree Android AOSP 构建在 android-10.0.0_r39 的 build_image.py 中失败 - Android AOSP build failing in build_image.py for android-10.0.0_r39 无法在android系统应用程序中导入(导入com.android.internal.statusbar)语句 - Can't import(import com.android.internal.statusbar) statements in android system application 如何使用Git从android.googlesourcecode.com下载特定版本的源代码? - How do I download a specific version of source code from android.googlesourcecode.com using Git?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM