Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
maureenorea-clores committed Aug 8, 2024
1 parent 0cbbe41 commit 0dc617d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import com.rakuten.tech.mobile.inappmessaging.runtime.manager.SessionManager
import com.rakuten.tech.mobile.inappmessaging.runtime.utils.BuildVersionChecker
import com.rakuten.tech.mobile.inappmessaging.runtime.utils.EventMatchingUtil
import com.rakuten.tech.mobile.inappmessaging.runtime.utils.InAppLogger

import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import com.rakuten.tech.mobile.inappmessaging.runtime.data.customjson.CustomJson
import com.rakuten.tech.mobile.inappmessaging.runtime.data.enums.InAppMessageType
import com.rakuten.tech.mobile.inappmessaging.runtime.data.models.Tooltip
import com.rakuten.tech.mobile.inappmessaging.runtime.utils.InAppLogger

import java.util.Date

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import com.rakuten.tech.mobile.inappmessaging.runtime.data.repositories.HostAppI
import com.rakuten.tech.mobile.inappmessaging.runtime.data.requests.ConfigQueryParamsBuilder
import com.rakuten.tech.mobile.inappmessaging.runtime.data.responses.ConfigResponse
import com.rakuten.tech.mobile.inappmessaging.runtime.utils.InAppLogger

import com.rakuten.tech.mobile.inappmessaging.runtime.utils.RetryDelayUtil
import com.rakuten.tech.mobile.inappmessaging.runtime.utils.RuntimeUtil
import com.rakuten.tech.mobile.inappmessaging.runtime.utils.WorkerUtils
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ internal class ImpressionWorker(
val impressionRequest = try {
Gson().fromJson(impressionRequestJsonRequest, ImpressionRequest::class.java)
} catch (e: JsonParseException) {
InAppLogger(TAG).error("Impression - error: ${e.message}")
InAppLogger(TAG).error("impression - error: ${e.message}")
return Result.failure()
}

Expand All @@ -65,7 +65,7 @@ internal class ImpressionWorker(
// Execute Retrofit API call and handle response.
onResponse(createReportImpressionCall(impressionEndpoint, impressionRequest).execute())
} catch (e: Exception) {
InAppLogger(TAG).error("Impression - error: ${e.message}")
InAppLogger(TAG).error("impression - error: ${e.message}")
Result.retry()
}
}
Expand Down

0 comments on commit 0dc617d

Please sign in to comment.