commit 2a47e5121258d59a343edc8bf56636c4cbc20787
parent 9d3fdb67c4718c7ff59efcf8774d8bbe793ed3ec
Author: ms <ms@taler.net>
Date: Sun, 19 Sep 2021 14:14:05 +0200
debug
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt b/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt
@@ -1039,7 +1039,7 @@ fun serverMain(dbName: String, port: Int) {
post("/api/withdrawal-operation/{wopid}") {
val wopid: String = ensureNonNull(call.parameters["wopid"])
val body = call.receiveJson<TalerWithdrawalConfirmation>()
-
+ logger.debug("Withdrawal confirmation valid.")
transaction {
var wo = TalerWithdrawalEntity.find {
TalerWithdrawalsTable.wopid eq UUID.fromString(wopid)