From 7b5c5003169bb7375bb81fe60dd15544f07f834e Mon Sep 17 00:00:00 2001 From: Tom Elliott Date: Thu, 24 Aug 2023 10:38:36 +0100 Subject: [PATCH] EXUI-266: Remove logging after testing is completed --- api/lib/http/index.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/api/lib/http/index.ts b/api/lib/http/index.ts index 6db17aa4c0..5bb7ebcf1f 100644 --- a/api/lib/http/index.ts +++ b/api/lib/http/index.ts @@ -6,9 +6,6 @@ const previewDeploymentId: string = process.env.PREVIEW_DEPLOYMENT_ID; if (previewDeploymentId) { axios.defaults.headers.common['hmcts-deployment-id'] = previewDeploymentId; - // TODO: To be removed after testing completed - // for testing purposes - printing deployment id here: - console.log(`Preview Deployment ID for testing: ${previewDeploymentId}`); } axios.defaults.headers.common['Content-Type'] = 'application/json'; http.interceptors.request.use(requestInterceptor);