@typeberry/jam 0.1.2-953c012 → 0.1.2-b7cae5d

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/importer/index.js CHANGED
@@ -13413,8 +13413,8 @@ function print(level, levelAndName, strings, data) {
13413
13413
  return;
13414
13414
  }
13415
13415
  const lvlText = Level[level].padEnd(5);
13416
- const val = strings.map((v, idx) => `${v}${idx < data.length ? data[idx] : ""}`);
13417
- const msg = `${lvlText} [${levelAndName[1]}] ${val.join("")}`;
13416
+ const val = strings.map((v, idx) => `${v}${data[idx]}`);
13417
+ const msg = `${lvlText} [${levelAndName[1]}] ${val}`;
13418
13418
  if (level === Level.WARN) {
13419
13419
  console.warn(msg);
13420
13420
  }