Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Fix spammy logging (DEV) #3005

Merged
merged 1 commit into from
Apr 29, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,7 @@ class DefaultTracingStatus @Inject constructor(
)

private suspend fun isEnabled(): Boolean = try {
client.isEnabled.await().also {
Timber.tag(TAG).v("Tracing isEnabled=$it")
}
client.isEnabled.await()
} catch (e: Throwable) {
Timber.tag(TAG).w(e, "Failed to determine tracing status.")
throw e
Expand Down