Skip to content

Commit

Permalink
Update debug print
Browse files Browse the repository at this point in the history
Change-Id: I726b41cd69c73e190dfe280db43c815c001d391d
  • Loading branch information
SpiritCroc committed Jan 15, 2025
1 parent 12707c1 commit 00818ed
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ internal fun RowScope.scMessagesViewTopBarActions(
Column(Modifier.fillMaxWidth()) {
Row(Modifier.fillMaxWidth()) {
Text(
text = "LR=${scReadState?.lastReadMarkerId?.value.toString()}",
text = "LR=${scReadState?.lastReadMarkerId?.value}/${scReadState?.lastReadMarkerIndex?.intValue}",
maxLines = 1,
overflow = TextOverflow.Ellipsis,
textAlign = TextAlign.Center,
Expand All @@ -181,7 +181,7 @@ internal fun RowScope.scMessagesViewTopBarActions(
modifier = Modifier.padding(horizontal = 4.dp),
)
Text(
text = "TS=${scReadState?.readMarkerToSet?.value.toString()}",
text = "TS=${scReadState?.readMarkerToSet?.value}",
maxLines = 1,
overflow = TextOverflow.Ellipsis,
textAlign = TextAlign.Center,
Expand Down

0 comments on commit 00818ed

Please sign in to comment.