Skip to content

Commit

Permalink
add another logging statement
Browse files Browse the repository at this point in the history
  • Loading branch information
nullpointer0x00 committed Mar 8, 2024
1 parent b9635c0 commit 7043784
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,10 @@ class GovService(
list
}
}
}.map { mapProposalRecord(it) }
}.map {
logger().info("mapping proposal record: $it")
mapProposalRecord(it)
}
.let {
val total = GovProposalRecord.getAllCount()
PagedResults(total.pageCountOfResults(count), it, total)
Expand Down

0 comments on commit 7043784

Please sign in to comment.