Skip to content

Commit

Permalink
disable information output in Connect-AzAccount
Browse files Browse the repository at this point in the history
  • Loading branch information
YanaXu committed May 22, 2024
1 parent 59ce201 commit c3e9a96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PowerShell/AzPSScriptBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default class AzPSScriptBuilder {
if(subscriptionId){
loginCmdlet += `-Subscription '${subscriptionId}' `;
}
loginCmdlet += `${cmdletSuffix} | out-null;`;
loginCmdlet += `${cmdletSuffix} -InformationAction Ignore | out-null;`;
return loginCmdlet;
}
}
Expand Down

0 comments on commit c3e9a96

Please sign in to comment.