Eventlog中常用log名称含义

# An activity is being finished:
//正在完成一个活动:
30001 am_finish_activity 

# A task is being brought to the front of the screen:
//一个任务被带到前面的屏幕上
30002 am_task_to_front 

# An existing activity is being given a new intent:
30003 am_new_intent 

# A new task is being created:
30004 am_create_task 

# A new activity is being created in an existing task:
//在现有的任务栈中创建一个新的活动。
30005 am_create_activity 

# An activity has been resumed into the foreground but was not already running:
//活动已经恢复到前台但没有运行。
30006 am_restart_activity 

# An activity has been resumed and is now in the foreground:
//一个活动已经恢复,现在在前台:
30007 am_resume_activity 


# Application Not Responding
30008 am_anr 
# Activity launch time
//活动启动时间
30009 am_activity_launch_time 

# Application process bound to work
//应用程序进程绑定到工作
30010 am_proc_bound 

# Application process died
30011 am_proc_died 

# The Activity Manager failed to pause the given activity.
30012 am_failed_to_pause 

# Attempting to pause the current activity
//尝试暂停当前的活动
30013 am_pause_activity 

# Application process has been started
//应用程序进程已经开始
30014 am_proc_start
 
# An application process has been marked as bad
30015 am_proc_bad 
# An application process that was bad is now marked as good
30016 am_proc_good 
# Reporting to applications that memory is low
30017 am_low_memory 

# An activity is being destroyed:
//一个活动被摧毁
30018 am_destroy_activity 

# An activity has been relaunched, resumed, and is now in the foreground:
30019 am_relaunch_resume_activity 
# An activity has been relaunched:
30020 am_relaunch_activity 

# The activity's onPause has been called.
//一个活动的onPause被通知。
30021 am_on_paused_called 
# The activity's onResume has been called.
30022 am_on_resume_called 

# Kill a process to reclaim memory.
30023 am_kill 
# Discard an undelivered serialized broadcast (timeout/ANR/crash)
30024 am_broadcast_discard_filter
30025 am_broadcast_discard_app 

# A service is being created
30030 am_create_service 
# A service is being destroyed
30031 am_destroy_service 

# A process has crashed too many times, it is being cleared
30032 am_process_crashed_too_much 
# An unknown process is trying to attach to the activity manager
30033 am_drop_process 
# A service has crashed too many times, it is being stopped
30034 am_service_crashed_too_much 
# A service is going to be restarted after its process went away
30035 am_schedule_service_restart 
# A client was waiting for a content provider, but its process was lost
30036 am_provider_lost_process 
# The activity manager gave up on a new process taking too long to start
30037 am_process_start_timeout

# Unhandled exception
30039 am_crash 
# Log.wtf() called
30040 am_wtf 

# User switched
30041 am_switch_user 

# Activity fully drawn time
30042 am_activity_fully_drawn_time 

# Activity set to resumed
//活动将恢复
30043 am_set_resumed_activity 

# Stack focus
30044 am_focused_stack 

# Running pre boot receiver
30045 am_pre_boot 

# Report collection of global memory state
30046 am_meminfo 
# Report collection of memory used by a process
30047 am_pss 

# Attempting to stop an activity
30048 am_stop_activity 
# The activity's onStop has been called.
30049 am_on_stop_called 

# Report changing memory conditions (Values are ProcessStats.ADJ_MEM_FACTOR* constants)
30050 am_mem_factor 

# UserState has changed
30051 am_user_state_changed 

# Note when any processes of a uid have started running
30052 am_uid_running 
# Note when all processes of a uid have stopped.
30053 am_uid_stopped 
# Note when the state of a uid has become active.
30054 am_uid_active 
# Note when the state of a uid has become idle (background check enforced).
30055 am_uid_idle 
# Note when a service is being forcibly stopped because its app went idle.
30056 am_stop_idle_service 

# The activity's onCreate has been called.
30057 am_on_create_called 
# The activity's onRestart has been called.
30058 am_on_restart_called 
# The activity's onStart has been called.
30059 am_on_start_called 
# The activity's onDestroy has been called.
30060 am_on_destroy_called 
# The activity's onActivityResult has been called.
30062 am_on_activity_result_called 

# The task is being removed from its parent stack
30061 am_remove_task 

# The app's provider list begin to publish
30101 am_app_pub_providers 

你可能感兴趣的:(项目成长)