aboutsummaryrefslogtreecommitdiff
path: root/nexus
diff options
context:
space:
mode:
authorms <ms@taler.net>2021-08-31 15:18:19 +0200
committerms <ms@taler.net>2021-08-31 15:18:19 +0200
commit51a35c93230f8f0fbac258a392479cef13cb002a (patch)
tree1c5c2072c6e50b0995eadec20a8de079f59dcf9f /nexus
parentc90a6e18da30d26f68fa44b6f214191fea5eb144 (diff)
downloadlibeufin-51a35c93230f8f0fbac258a392479cef13cb002a.tar.gz
libeufin-51a35c93230f8f0fbac258a392479cef13cb002a.tar.bz2
libeufin-51a35c93230f8f0fbac258a392479cef13cb002a.zip
debug
Diffstat (limited to 'nexus')
-rw-r--r--nexus/src/main/kotlin/tech/libeufin/nexus/BankConnectionProtocol.kt2
-rw-r--r--nexus/src/main/kotlin/tech/libeufin/nexus/ebics/EbicsNexus.kt2
2 files changed, 2 insertions, 2 deletions
diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/BankConnectionProtocol.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/BankConnectionProtocol.kt
index 9cf5a435..c56524ff 100644
--- a/nexus/src/main/kotlin/tech/libeufin/nexus/BankConnectionProtocol.kt
+++ b/nexus/src/main/kotlin/tech/libeufin/nexus/BankConnectionProtocol.kt
@@ -58,7 +58,7 @@ interface BankConnectionProtocol {
// Send to the bank a previously prepared payment instruction.
suspend fun submitPaymentInitiation(httpClient: HttpClient, paymentInitiationId: Long)
- // Downlaods transactions from the bank, according to the specification
+ // Downloads transactions from the bank, according to the specification
// given in the arguments.
suspend fun fetchTransactions(
fetchSpec: FetchSpecJson,
diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/ebics/EbicsNexus.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/ebics/EbicsNexus.kt
index f0782124..e0d62056 100644
--- a/nexus/src/main/kotlin/tech/libeufin/nexus/ebics/EbicsNexus.kt
+++ b/nexus/src/main/kotlin/tech/libeufin/nexus/ebics/EbicsNexus.kt
@@ -122,7 +122,7 @@ private suspend fun fetchEbicsC5x(
when (response) {
is EbicsDownloadSuccessResult -> {
response.orderData.unzipWithLambda {
- logger.debug("Camt entry: ${it.second}")
+ logger.debug("Camt entry (filename (in the Zip archive) ${it.first}): ${it.second}")
storeCamt(bankConnectionId, it.second, historyType)
}
}