Skip to content

Commit 46bcaad

Browse files
Debug orkestrator fetch error
1 parent 6931f08 commit 46bcaad

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

app/models/orkestrator-opplysning.server.ts

+6
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,19 @@ const orkestratorClient = createClient<paths>({ baseUrl: getEnv("DP_SOKNAD_ORKES
1212
export async function hentOrkestratorBarn(request: Request, soknadId: string) {
1313
const onBehalfOfToken = await getSoknadOrkestratorOboToken(request);
1414

15+
console.log("hentOrkestratorBarn 🚀");
16+
1517
const { response, data, error } = await orkestratorClient.GET("/opplysninger/{soknadId}/barn", {
1618
headers: getHeaders(onBehalfOfToken),
1719
params: {
1820
path: { soknadId },
1921
},
2022
});
2123

24+
console.log(`🔥 error :`, error);
25+
console.log(`🔥 data :`, data);
26+
console.log(`🔥 response :`, response);
27+
2228
if (data) {
2329
return data;
2430
}

0 commit comments

Comments
 (0)