Skip to content

Commit

Permalink
Fixes verbose logging in 'teams team app list'. Closes #5229
Browse files Browse the repository at this point in the history
  • Loading branch information
nicodecleyre authored and milanholemans committed Jul 21, 2023
1 parent b2869e6 commit 1ef91ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/m365/teams/commands/team/team-app-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class TeamsTeamAppListCommand extends GraphCommand {
public async commandAction(logger: Logger, args: CommandArgs): Promise<void> {
try {
if (this.verbose) {
logger.logToStderr(`Retrieving installed apps for team '${args.options.teamId || args.options.teamId}'`);
logger.logToStderr(`Retrieving installed apps for team '${args.options.teamId || args.options.teamName}'`);
}

const teamId: string = await this.getTeamId(args);
Expand Down

0 comments on commit 1ef91ab

Please sign in to comment.