Skip to content

Commit e8e3939

Browse files
committed
Extra backend logging when not found
1 parent e33a477 commit e8e3939

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

packages/fyllut-backend/src/routers/api/send-inn-soknad.ts

+3
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ const sendInnSoknad = {
5959
true,
6060
);
6161
if (isNotFound(sendInnResponse, responseError)) {
62+
logger.info(`${sanitizedInnsendingsId}: Not found. Failed to get`, responseError);
6263
return res.sendStatus(404);
6364
}
6465

@@ -158,6 +159,7 @@ const sendInnSoknad = {
158159
true,
159160
);
160161
if (isNotFound(sendInnResponse, responseError)) {
162+
logger.info(`${sanitizedInnsendingsId}: Not found. Failed to update`, responseError);
161163
return res.sendStatus(404);
162164
}
163165

@@ -207,6 +209,7 @@ const sendInnSoknad = {
207209
true,
208210
);
209211
if (isNotFound(sendInnResponse, responseError)) {
212+
logger.info(`${sanitizedInnsendingsId}: Not found. Failed to delete`, responseError);
210213
return res.sendStatus(404);
211214
}
212215

packages/fyllut-backend/src/routers/api/send-inn-utfylt-soknad.ts

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ const sendInnUtfyltSoknad = {
7777
} else {
7878
const responseError = await responseToError(sendInnResponse, 'Feil ved kall til SendInn', true);
7979
if (isNotFound(sendInnResponse, responseError)) {
80+
logger.info(`${sanitizedInnsendingsId}: Not found. Failed to submit`, responseError);
8081
return res.sendStatus(404);
8182
}
8283

0 commit comments

Comments
 (0)