Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
han1202012 committed Jun 22, 2020
1 parent e0e6e59 commit c178f9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/main/java/kim/hsl/rtmp/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ protected void onCreate(Bundle savedInstanceState) {
setTheme(R.style.AppTheme);
super.onCreate(savedInstanceState);

// 将追踪信息存放到该文件中
// 将追踪信息存放到该文件中
File traceFile = new File(Environment.getExternalStorageDirectory(), "Method_Trace");
// 开启方法追踪
// 开启方法追踪
Debug.startMethodTracing(traceFile.getAbsolutePath());

setContentView(R.layout.activity_main);
Expand Down Expand Up @@ -114,7 +114,7 @@ public void onClick(View v) {
}
});

// 停止方法追踪
// 停止方法追踪
Debug.stopMethodTracing();

}
Expand Down

0 comments on commit c178f9c

Please sign in to comment.