We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa89134 + 28f058b commit c226d65Copy full SHA for c226d65
lib/common/logger/logger.ts
@@ -199,15 +199,15 @@ export class Logger implements ILogger {
199
*******************************************************************************************/
200
201
out(...args: any[]): void {
202
- this.info(args);
+ this.info(...args);
203
}
204
205
write(...args: any[]): void {
206
- this.info(args, { [LoggerConfigData.skipNewLine]: true });
+ this.info(...args, { [LoggerConfigData.skipNewLine]: true });
207
208
209
printOnStderr(...args: string[]): void {
210
- this.error(args);
+ this.error(...args);
211
212
213
printInfoMessageOnSameLine(message: string): void {
0 commit comments