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; } };