Improving error logs

This commit is contained in:
Vitor Pamplona
2026-01-05 19:26:00 -05:00
parent 2c4279621d
commit 69c53aca06
3 changed files with 3 additions and 3 deletions
@@ -128,7 +128,7 @@ open class BasicRelayClient(
} catch (e: Throwable) {
if (e is CancellationException) throw e
// doesn't expose parsing errors to lib users as errors
Log.e("BasicRelayClient", "Failure to parse message from Relay", e)
Log.e("BasicRelayClient", "Failure to parse message from Relay: $text", e)
}
}