Skip to content

Commit e858496

Browse files
committed
remove logging statement
1 parent b802c50 commit e858496

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/shared/clients/iamClient.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,8 @@ export class DefaultIamClient {
108108
public async putRolePolicy(roleArn: string, policyName: string, policyDocument: string): Promise<void> {
109109
const client = await this.createSdkClient()
110110
const roleName = this.getFriendlyName(roleArn)
111-
const response = await client
111+
await client
112112
.putRolePolicy({ RoleName: roleName, PolicyName: policyName, PolicyDocument: policyDocument })
113113
.promise()
114-
console.log(response)
115114
}
116115
}

0 commit comments

Comments
 (0)