commit a95f25401493cec943f0562d53f512b04ec5280d
parent 2be63a217a110f03ccb66de1892e9c86b8646572
Author: MS <ms@taler.net>
Date: Tue, 26 Jan 2021 18:11:09 +0100
Avoid stack trace on a managed exception.
Diffstat:
1 file changed, 1 insertion(+), 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
@@ -160,7 +160,7 @@ suspend fun fetchEbicsBySpec(
try {
fetchEbicsC5x(spec.orderType, client, bankConnectionId, spec.orderParams, subscriberDetails)
} catch (e: Exception) {
- logger.warn("Ingestion failed for $spec", e)
+ logger.warn("Ingestion failed for $spec")
}
}
}