[Gradle, JS] Fix of using format-util

^KT-42921 fixed
This commit is contained in:
Ilya Goncharov
2021-03-17 13:08:07 +03:00
committed by TeamCityServer
parent 965426bbd9
commit b2a2616c10
2 changed files with 3 additions and 2 deletions
@@ -56,5 +56,5 @@ export function formatMessage() {
formattedArguments.push(tcEscape(param));
});
formattedArguments.unshift(tcMessage);
return format(formattedArguments);
return format(...formattedArguments);
}