From 5c2e69e727e28f10a0284cda4eeeb57fa3ed536d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simen=20H=C3=B8ston?= Date: Tue, 14 Nov 2023 14:36:27 +0100 Subject: [PATCH] Rette feilmelding --- src/main/kotlin/no/nav/bidrag/commons/util/SjekkForNyIdent.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/no/nav/bidrag/commons/util/SjekkForNyIdent.kt b/src/main/kotlin/no/nav/bidrag/commons/util/SjekkForNyIdent.kt index 1a92282..5e40b51 100644 --- a/src/main/kotlin/no/nav/bidrag/commons/util/SjekkForNyIdent.kt +++ b/src/main/kotlin/no/nav/bidrag/commons/util/SjekkForNyIdent.kt @@ -137,10 +137,10 @@ class IdentConsumer( Array::class.java ).body?.first()?.ident ?: ident } catch (e: NoSuchElementException) { - LOGGER.warn("Bidrag-person fant ingen person på kalt ident: ${e.message}, callId: ${CorrelationId.fetchCorrelationIdForThread()}.\n${e.printStackTrace()}") + LOGGER.warn("Bidrag-person fant ingen person på kalt ident. \nFeilmelding: ${e.message} CallId: ${CorrelationId.fetchCorrelationIdForThread()}.\n$e") ident } catch (e: Exception) { - LOGGER.error("Noe gikk galt i kall mot bidrag-person: ${e.message}, callId: ${CorrelationId.fetchCorrelationIdForThread()}.\n${e.printStackTrace()}") + LOGGER.error("Noe gikk galt i kall mot bidrag-person: ${e.message} CallId: ${CorrelationId.fetchCorrelationIdForThread()}.\n$e") ident } }