Skip to content

Commit

Permalink
Log the "raw" contract id string, and not the wrapping case class.
Browse files Browse the repository at this point in the history
Addresses #2662 (review)
  • Loading branch information
gerolf-da committed Aug 30, 2019
1 parent 166424e commit d295959
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -792,7 +792,7 @@ private class JdbcLedgerDao(
.map(mapContractDetails)

override def lookupActiveContract(contractId: AbsoluteContractId): Future[Option[Contract]] =
dbDispatcher.executeSql(s"lookup active contract [$contractId]") { implicit conn =>
dbDispatcher.executeSql(s"lookup active contract [${contractId.coid}]") { implicit conn =>
lookupActiveContractSync(contractId)
}

0 comments on commit d295959

Please sign in to comment.