Skip to content

Commit

Permalink
downgrader error-melding "fant ikke sakId / oppgaveId" til warning (#549
Browse files Browse the repository at this point in the history
)

downgrader "fant ikke sakId / oppgaveId" til warning
  • Loading branch information
mortenbyhring authored Jun 7, 2024
1 parent 5ccf1c4 commit e0d685e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ class NotifikasjonHentIdLoeser(
)
} else {
"Fant ikke sakId.".also {
logger.error(it)
sikkerLogger.error(it)
logger.warn(it)
sikkerLogger.warn(it)
}
}

Expand All @@ -120,8 +120,8 @@ class NotifikasjonHentIdLoeser(
)
} else {
"Fant ikke oppgaveId.".also {
logger.error(it)
sikkerLogger.error(it)
logger.warn(it)
sikkerLogger.warn(it)
}
}
}
Expand Down

0 comments on commit e0d685e

Please sign in to comment.