Skip to content

Commit

Permalink
Update TransportGetDestinationsAction.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
Annie Lee committed Mar 17, 2022
1 parent 592c2b2 commit 5a72a6c
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ class TransportGetDestinationsAction @Inject constructor(
val totalDestinationCount = response.hits.totalHits?.value?.toInt()
val destinations = mutableListOf<Destination>()
for (hit in response.hits) {
// TODO: Remove debug logs
log.info("hit: $hit")
log.info("hit.sourceAsString: $hit.sourceAsString")
val id = hit.id
val version = hit.version
val seqNo = hit.seqNo.toInt()
Expand Down

0 comments on commit 5a72a6c

Please sign in to comment.