From 13c99207f9b18596493bc8bd349b392dbaa781e2 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Tue, 16 Sep 2025 16:15:42 +0400 Subject: [PATCH] removed all logs --- src/custom/kms.ts | 1 - src/custom/util.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/custom/kms.ts b/src/custom/kms.ts index 08dfaa2..fe9522a 100644 --- a/src/custom/kms.ts +++ b/src/custom/kms.ts @@ -38,7 +38,6 @@ export default class KmsClient { try { const res = await this.apiClient.getKmsKeyByName(options); - console.log(res); return res.key; } catch (err) { throw newInfisicalError(err); diff --git a/src/custom/util.ts b/src/custom/util.ts index 5420006..dced753 100644 --- a/src/custom/util.ts +++ b/src/custom/util.ts @@ -43,7 +43,6 @@ export const getAwsRegion = async () => { return identityResponse.data.region; } catch (e) { - console.error("Failed to retrieve AWS region"); throw e; } };