commit 8f482683151d429349c8c4692cc98740b4669552
parent d4158259a783f8ec47c93447d7d3fd06c411c411
Author: Florian Dold <florian.dold@gmail.com>
Date: Mon, 22 Jun 2020 19:15:36 +0530
logging
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/ebics/EbicsNexus.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/ebics/EbicsNexus.kt
@@ -154,7 +154,11 @@ suspend fun fetchEbicsBySpec(
}
}
for (spec in specs) {
- fetchEbicsC5x(spec.orderType, client, bankConnectionId, spec.orderParams, subscriberDetails)
+ try {
+ fetchEbicsC5x(spec.orderType, client, bankConnectionId, spec.orderParams, subscriberDetails)
+ } catch (e: Exception) {
+ logger.warn("Ingestion failed for $spec", e)
+ }
}
}