Marco Ciotola
2025-11-02 0ecb859d2d826f1813b49e2b63fa37d1e7151a1d
quartz/util/trace.ts
@@ -1,4 +1,4 @@
import chalk from "chalk"
import { styleText } from "util"
import process from "process"
import { isMainThread } from "workerpool"
@@ -11,9 +11,9 @@
  lines.push("")
  lines.push(
    "\n" +
      chalk.bgRed.black.bold(" ERROR ") +
      styleText(["bgRed", "black", "bold"], " ERROR ") +
      "\n\n" +
      chalk.red(` ${msg}`) +
      styleText("red", ` ${msg}`) +
      (err.message.length > 0 ? `: ${err.message}` : ""),
  )