Updated on 2026-08-14

This commit is contained in:
Tangem 2026-05-04 11:10:18 +04:00
parent 266e49734e
commit 371916a2e9
7 changed files with 115 additions and 119 deletions

View file

@ -1,22 +0,0 @@
package com.tangem.tap.data
import com.tangem.blockchain.common.logging.BlockchainSDKLogger
import com.tangem.datasource.local.logs.AppLogsStore
import com.tangem.utils.logging.TangemLogger
/**
* BlockchainSDK logger implementation
*
* @property appLogsStore app logs store
*
[REDACTED_AUTHOR]
*/
internal class TangemBlockchainSDKLogger(
private val appLogsStore: AppLogsStore,
) : BlockchainSDKLogger {
override fun log(level: BlockchainSDKLogger.Level, message: String) {
TangemLogger.d(message)
appLogsStore.saveLogMessage(tag = "BlockchainSDK_${level.name}", message)
}
}