From d69267a3ca2dfb0a0e0ef4a9269bf257e7b6cd65 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Mon, 24 Jun 2024 17:27:02 -0400 Subject: [PATCH] remove console.log --- .../certificate-authority/certificate-authority-service.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/services/certificate-authority/certificate-authority-service.ts b/backend/src/services/certificate-authority/certificate-authority-service.ts index 5a3243ee8..7d87545e2 100644 --- a/backend/src/services/certificate-authority/certificate-authority-service.ts +++ b/backend/src/services/certificate-authority/certificate-authority-service.ts @@ -776,7 +776,6 @@ export const certificateAuthorityServiceFactory = ({ throw new Error(`Invalid altName: ${altName}`); }); - console.log("the altNamesArray: ", altNamesArray); const altNamesExtension = new x509.SubjectAlternativeNameExtension(altNamesArray, false); extensions.push(altNamesExtension); }