Skip to content

Commit

Permalink
minor change to email simulator
Browse files Browse the repository at this point in the history
  • Loading branch information
cornelcroi committed Dec 24, 2024
1 parent efcf00a commit 51f90a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class SQSLogger {
}
}



private formatMessage(...args: any[]): string {
return args.map(arg =>
Expand All @@ -44,7 +44,6 @@ export class SQSLogger {

log(...args: any[]): void {
const message = this.formatMessage(...args);
console.log("sendToSQS message="+JSON.stringify(message))
this.sendToSQS(message);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -456,13 +456,9 @@ export class AiEcommerceSupportSimulatorStack extends cdk.Stack {
});


// Output the AppSync API URL and API Key
new cdk.CfnOutput(this, "GraphQLApiUrl", {
value: api.graphqlUrl,
new cdk.CfnOutput(this, "CloudfrontDomainName", {
value: distribution.domainName
});

new cdk.CfnOutput(this, "GraphQLApiKey", {
value: api.apiKey || "",
});
}
}

0 comments on commit 51f90a9

Please sign in to comment.