Skip to content

Commit

Permalink
logg orgnr som kaller vedtak (#6567)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebassonav authored Dec 5, 2024
1 parent 2b61b46 commit d72f97c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class VedtaksvurderingKlient(
.get {
url("$vedtaksvurderingUrl/$vedtakId")
if (callerContext is MaskinportenTpContext) {
header("orgnr", callerContext.organisasjonsnr)
header("orgnr", callerContext.organisasjonsnr).also { logger.info("Henter vedtak med orgnr $it") }
}
}.body()
} catch (e: ClientRequestException) {
Expand Down Expand Up @@ -69,7 +69,7 @@ class VedtaksvurderingKlient(
parameter("sakstype", sakType)
parameter("fomDato", fomDato)
if (callerContext is MaskinportenTpContext) {
header("orgnr", callerContext.organisasjonsnr)
header("orgnr", callerContext.organisasjonsnr).also { logger.info("Henter vedtaksliste med orgnr $it") }
}
contentType(ContentType.Application.Json)
setBody(FoedselsnummerDTO(fnr))
Expand Down

0 comments on commit d72f97c

Please sign in to comment.