Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronvoell committed Feb 15, 2025
1 parent f613c93 commit 3139384
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions library/src/main/java/org/xmtp/android/library/Group.kt
Original file line number Diff line number Diff line change
Expand Up @@ -435,15 +435,17 @@ class Group(
Log.w(
"XMTP Group stream",
"Failed to decode message: id=${message.id.toHex()}, " +
"convoId=${message.convoId.toHex()}, " +
"senderInboxId=${message.senderInboxId}"
"convoId=${message.convoId.toHex()}, " +
"senderInboxId=${message.senderInboxId}"
)
}
} catch (e: Exception) {
Log.e(
"XMTP Group stream", "Error decoding message: id=${message.id.toHex()}, " +
"convoId=${message.convoId.toHex()}, " +
"senderInboxId=${message.senderInboxId}", e
"XMTP Group stream",
"Error decoding message: id=${message.id.toHex()}, " +
"convoId=${message.convoId.toHex()}, " +
"senderInboxId=${message.senderInboxId}",
e
)
}
}
Expand Down

0 comments on commit 3139384

Please sign in to comment.