From 74704ac1fc30b57ab9cb63b37070806df1fcac38 Mon Sep 17 00:00:00 2001 From: Christian Dupuis Date: Tue, 28 May 2019 12:09:12 +0200 Subject: [PATCH] Add missing array destructuring [changelog:fixed] --- lib/api-helper/log/WriteToAllProgressLog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api-helper/log/WriteToAllProgressLog.ts b/lib/api-helper/log/WriteToAllProgressLog.ts index a6e6f7726..e573a8443 100644 --- a/lib/api-helper/log/WriteToAllProgressLog.ts +++ b/lib/api-helper/log/WriteToAllProgressLog.ts @@ -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 {