Updated on 2026-08-14

This commit is contained in:
Tangem 2021-03-29 15:51:41 +03:00
parent d1c8701b8a
commit 19fa5e2b60
3 changed files with 9 additions and 13 deletions

View file

@ -5,10 +5,10 @@ import android.content.pm.ActivityInfo
import android.nfc.NfcAdapter
import android.nfc.Tag
import android.os.Bundle
import android.util.Log
import androidx.appcompat.app.AppCompatActivity
import com.tangem.CardFilter
import com.tangem.Config
import com.tangem.Log
import com.tangem.TangemSdk
import com.tangem.commands.common.card.CardType
import com.tangem.tangem_sdk_new.extensions.init
@ -46,7 +46,7 @@ private fun initCoroutineExceptionHandler(): CoroutineExceptionHandler {
val sw = StringWriter()
throwable.printStackTrace(PrintWriter(sw))
val exceptionAsString: String = sw.toString()
Log.e("TangemSdk", exceptionAsString)
Log.e("Coroutine", exceptionAsString)
throw throwable
}
}