Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
wanlwanl committed Aug 12, 2024
1 parent fcb860a commit 8d3535c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { remove } from 'fs-extra';
// it has extra steps to generate a releasable azure sdk package (no modular client's doc for now, use RLC's for now) after typescript code is generate:
// https://github.com/Azure/azure-sdk-for-js/blob/main/documentation/steps-after-generations.md
export async function generateAzureSDKPackage(options: ModularClientPackageOptions): Promise<PackageResult> {
logger.logInfo(`Start generating modular client package for azure-sdk-for-js.`);
logger.logInfo(`Start generating modular client package for azure-sdk-for-js. (debug)`);
const packageResult = initPackageResult();
try {
const packageDirectory = await getGeneratedPackageDirectory(options.typeSpecDirectory);
Expand Down Expand Up @@ -45,7 +45,7 @@ export async function generateAzureSDKPackage(options: ModularClientPackageOptio
packageResult.path.push(ciYamlPath);

packageResult.result = 'succeeded';
logger.logInfo(`Generated package successfully.`);
logger.logInfo(`Generated package successfully. (debug)`);
logger.logInfo(`Package summary: ${JSON.stringify(packageResult, undefined, 2)}`);
} catch (err) {
packageResult.result = 'failed';
Expand Down

0 comments on commit 8d3535c

Please sign in to comment.