libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit 51a35c93230f8f0fbac258a392479cef13cb002a
parent c90a6e18da30d26f68fa44b6f214191fea5eb144
Author: ms <ms@taler.net>
Date:   Tue, 31 Aug 2021 15:18:19 +0200

debug

Diffstat:
M.idea/misc.xml | 2+-
Mnexus/src/main/kotlin/tech/libeufin/nexus/BankConnectionProtocol.kt | 2+-
Mnexus/src/main/kotlin/tech/libeufin/nexus/ebics/EbicsNexus.kt | 2+-
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) } }