Android Log System

先来张图:

Android Log System_第1张图片


本文主要为了解决打印log丢失问题进行的学习:

12-15 20:50:21.241 2057 2589 I chatty : uid=1000 system_server expire 485 lines
12-15 20:50:21.791 3701 3701 I TrafficManageService: initSim
12-15 20:50:21.838 2057 2852 I chatty : uid=1000 system_server expire 1 line
12-15 20:50:22.014 2057 2589 I chatty : uid=1000 system_server expire 860 lines
12-15 20:50:22.110 2057 2589 F art : art/runtime/runtime.cc:403] | stack=0x7f6ef05000-0x7f6ef07000 stackSize=1005KB
12-15 20:50:22.110 2057 2589 F art : art/runtime/runtime.cc:403] | held mutexes=
12-15 20:50:22.110 2057 2589 F art : art/runtime/runtime.cc:403] kernel: __switch_to+0x70/0x7c
12-15 20:50:22.110 2057 2589 F art : art/runtime/runtime.cc:403] kernel: binder_thread_read+0xecc/0x1004


在解决问题的时候,打印了一些log,而这些关键的log总是抓不到,而是在 expire 860 lines里面,这个跟 log  的 drop机制相关,就此问题学习部分 log 机制中的知识。



你可能感兴趣的:(工具软件)