Skip to content

Commit

Permalink
fix(amplify-category-api): remove stack trace from printout for api (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
marcvberg committed Mar 9, 2022
1 parent 436d53f commit 55be9c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/amplify-category-api/src/index.ts
Expand Up @@ -226,7 +226,7 @@ export async function executeAmplifyCommand(context: $TSContext) {
if (error) {
printer.error(error.message || error);
if (error.stack) {
printer.info(error.stack);
printer.debug(error.stack);
}
await context.usageData.emitError(error);
}
Expand Down

0 comments on commit 55be9c3

Please sign in to comment.