From 9ad49e878b02cb742dccd8129ee19294d9e35253 Mon Sep 17 00:00:00 2001 From: Martyanov Andrey <37772440+martyanovandrey@users.noreply.github.com> Date: Wed, 4 Sep 2024 15:01:31 +0300 Subject: [PATCH] fix: upload logs --- src/commands/publish/run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/publish/run.ts b/src/commands/publish/run.ts index e510ddba..be496a4d 100644 --- a/src/commands/publish/run.ts +++ b/src/commands/publish/run.ts @@ -31,7 +31,7 @@ export class Run { }); this.logger = new Logger(config, [ - (message) => message.replace(new RegExp(this.root, 'ig'), ''), + (level, message) => message.replace(new RegExp(this.root, 'ig'), ''), ]); }