Skip to content

Commit

Permalink
RecorderThread: Set Java thread name
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Gunnerson <chillermillerlong@hotmail.com>
  • Loading branch information
chenxiaolong committed Jun 4, 2022
1 parent 2446398 commit 087ac13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/RecorderThread.kt
Original file line number Diff line number Diff line change
@@ -45,7 +45,7 @@ class RecorderThread(
private val context: Context,
private val listener: OnRecordingCompletedListener,
call: Call,
): Thread() {
) : Thread(RecorderThread::class.java.simpleName) {
private val tag = "${RecorderThread::class.java.simpleName}/${id}"
private val isDebug = BuildConfig.DEBUG || Preferences.isDebugMode(context)

0 comments on commit 087ac13

Please sign in to comment.