Skip to content

Commit e4215e2

Browse files
committed
Add more verbose loggins
1 parent 81c1b10 commit e4215e2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/ec2-facade.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export class EC2Facade {
4444
if (!id) {
4545
throw Error('InstanceId is missing');
4646
}
47+
console.log(`Creating tags for ec2: ${instance}: ${JSON.stringify(tags)}`);
4748
return this.createTags({
4849
Resources: [id],
4950
Tags: tags,
@@ -55,6 +56,7 @@ export class EC2Facade {
5556
if (!id) {
5657
throw Error('InstanceId is missing');
5758
}
59+
console.log(`Deleting tags for ec2: ${instance}: ${JSON.stringify(tags)}`);
5860
return this.deleteTags({
5961
Resources: [id],
6062
Tags: tags,

0 commit comments

Comments
 (0)