Skip to content

Commit

Permalink
Justeringer logging skattegrunnlag
Browse files Browse the repository at this point in the history
  • Loading branch information
rinnan17 committed Oct 18, 2024
1 parent 4561893 commit ea8c0d3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ open class GrunnlagsConsumer {
is RestResponse.Failure -> {
if (type == "Skattegrunnlag") {
// Legger ikke ut noe hvis skattegrunnlag ikke er tilgjengelig ennå
if ((restResponse.statusCode == HttpStatus.NOT_FOUND) &&
(inntektsårIkkeStøttet(restResponse.message))
if (restResponse.statusCode == HttpStatus.NOT_FOUND &&
inntektsårIkkeStøttet(restResponse.message)
) {
logger.warn("Skattegrunnlag er ikke tilgjengelig ennå for personen")
secureLogger.warn { "Skattegrunnlag er ikke tilgjengelig ennå for $ident og perioden $fom - $tom" }
Expand Down

0 comments on commit ea8c0d3

Please sign in to comment.