Skip to content

Commit

Permalink
Move log statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-meidell committed Mar 11, 2021
1 parent eabdc34 commit 563b75c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,6 @@ internal class FerdigstillVedtakServiceImpl(
}

lukkOppgave(distribuertVedtak)
.fold(
{ log.error("Kunne ikke lukke oppgave: ${vedtak.behandling.oppgaveId} for behandling: ${vedtak.behandling.id}") },
{ log.info("Lukket oppgave: ${vedtak.behandling.oppgaveId} for behandling:${vedtak.behandling.id}") }
)

return distribuertVedtak.right()
}
Expand All @@ -228,6 +224,7 @@ internal class FerdigstillVedtakServiceImpl(
}
}
}.map { journalførtVedtak ->
log.info("Journalført brev for vedtak: ${journalførtVedtak.id}")
vedtakRepo.lagre(journalførtVedtak)
incrementJournalført(journalførtVedtak)
journalførtVedtak
Expand All @@ -251,6 +248,7 @@ internal class FerdigstillVedtakServiceImpl(
}
}
}.map { distribuertVedtak ->
log.info("Bestilt distribusjon av brev for vedtak: ${distribuertVedtak.id}")
vedtakRepo.lagre(distribuertVedtak)
incrementDistribuert(vedtak)
distribuertVedtak
Expand Down Expand Up @@ -295,8 +293,10 @@ internal class FerdigstillVedtakServiceImpl(
override fun lukkOppgave(vedtak: Vedtak): Either<KunneIkkeFerdigstilleVedtak.KunneIkkeLukkeOppgave, Vedtak> {
return oppgaveService.lukkOppgave(vedtak.behandling.oppgaveId)
.mapLeft {
log.error("Kunne ikke lukke oppgave: ${vedtak.behandling.oppgaveId} for behandling: ${vedtak.behandling.id}")
KunneIkkeFerdigstilleVedtak.KunneIkkeLukkeOppgave
}.map {
log.info("Lukket oppgave: ${vedtak.behandling.oppgaveId} for behandling: ${vedtak.behandling.id}")
incrementLukketOppgave(vedtak)
vedtak
}
Expand Down

0 comments on commit 563b75c

Please sign in to comment.