Skip to content

Commit

Permalink
Add missing array destructuring
Browse files Browse the repository at this point in the history
[changelog:fixed]
  • Loading branch information
cdupuis committed May 28, 2019
1 parent 89d001e commit 74704ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/api-helper/log/WriteToAllProgressLog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class WriteToAllProgressLog implements ProgressLog {
}

public write(msg: string, ...args: string[]): void {
this.logs.forEach(log => log.write(msg, args));
this.logs.forEach(log => log.write(msg, ...args));
}

public async flush(): Promise<void> {
Expand Down

0 comments on commit 74704ac

Please sign in to comment.