Skip to content

Commit

Permalink
Add error logging while updateing aps license (#8839)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalKinas committed Aug 22, 2023
1 parent 29ec2fc commit 9a349f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cli/scripts/init-aps-env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ async function updateLicense() {
logger.info(`Aps License uploaded!`);
return true;
} catch (error) {
logger.error(`Aps License failed!` );
logger.error(`Aps License failed!`, error.message);
return false;
}
}
Expand Down

0 comments on commit 9a349f2

Please sign in to comment.