Skip to content

Commit

Permalink
update attribute logging
Browse files Browse the repository at this point in the history
  • Loading branch information
cnuss committed Jan 28, 2022
1 parent 39d3a99 commit 34ddc2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class Action {
if (response.attributes) {
info(`
SAML Attributes:`);
Object.entries(response.attributes).forEach(([k, v]) => info(` - ${k}: ${v}\n`));
Object.entries(response.attributes).forEach(([k, v]) => info(` - ${k}: ${v}`));
}

await this.assumeAws(response, region);
Expand Down

0 comments on commit 34ddc2d

Please sign in to comment.