From fd010fe8231394fa4da9019cf9990c7807e185ed Mon Sep 17 00:00:00 2001 From: Piyush Gupta Date: Thu, 30 Oct 2025 02:49:13 +0530 Subject: [PATCH] chore: removes console logs --- backend/src/services/app-connection/chef/chef-connection-fns.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/src/services/app-connection/chef/chef-connection-fns.ts b/backend/src/services/app-connection/chef/chef-connection-fns.ts index 5b1056d42..a60325cc3 100644 --- a/backend/src/services/app-connection/chef/chef-connection-fns.ts +++ b/backend/src/services/app-connection/chef/chef-connection-fns.ts @@ -87,8 +87,6 @@ const getChefAuthHeaders = ( // Format the private key properly const formattedKey = formatPrivateKey(privateKey); - console.log("formattedKey", formattedKey); - // Sign the canonical request const sign = crypto.createSign(apiVersion === "1.3" ? "RSA-SHA256" : "RSA-SHA1"); sign.update(canonicalRequest);