improve error handling while serving

This commit is contained in:
Jacky Zhao
2023-07-23 11:49:26 -07:00
parent fd7c33c537
commit ae2e3b463a
8 changed files with 56 additions and 28 deletions

View File

@ -5,7 +5,9 @@ export function trace(msg: string, err: Error) {
const stack = err.stack
console.log()
console.log(
chalk.bgRed.white.bold(" ERROR ") +
"\n" +
chalk.bgRed.black.bold(" ERROR ") +
"\n" +
chalk.red(` ${msg}`) +
(err.message.length > 0 ? `: ${err.message}` : ""),
)