@typeberry/jam 0.1.2-dd9b0e2 → 0.1.2

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.
@@ -32177,8 +32177,8 @@ function print(level, levelAndName, strings, data) {
32177
32177
  return;
32178
32178
  }
32179
32179
  const lvlText = Level[level].padEnd(5);
32180
- const val = strings.map((v, idx) => `${v}${idx < data.length ? data[idx] : ""}`);
32181
- const msg = `${lvlText} [${levelAndName[1]}] ${val.join("")}`;
32180
+ const val = strings.map((v, idx) => `${v}${data[idx]}`);
32181
+ const msg = `${lvlText} [${levelAndName[1]}] ${val}`;
32182
32182
  if (level === Level.WARN) {
32183
32183
  console.warn(msg);
32184
32184
  }