commit 51a35c93230f8f0fbac258a392479cef13cb002a
parent c90a6e18da30d26f68fa44b6f214191fea5eb144
Author: ms <ms@taler.net>
Date: Tue, 31 Aug 2021 15:18:19 +0200
debug
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.idea/misc.xml b/.idea/misc.xml
@@ -9,5 +9,5 @@
<component name="FrameworkDetectionExcludesConfiguration">
<file type="web" url="file://$PROJECT_DIR$" />
</component>
- <component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="11" project-jdk-type="JavaSDK" />
+ <component name="ProjectRootManager" version="2" languageLevel="JDK_15" default="true" project-jdk-name="11" project-jdk-type="JavaSDK" />
</project>
\ No newline at end of file
diff --git 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
@@ -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)
}
}