mirror of
https://github.com/ragestudio/linebridge.git
synced 2025-06-09 10:34:17 +00:00
9 lines
266 B
JavaScript
9 lines
266 B
JavaScript
function outputServerError({
|
|
message = "Unexpected error",
|
|
description,
|
|
ref = "SERVER",
|
|
}) {
|
|
InternalConsole.error(`\n\x1b[41m\x1b[37m🆘 [${ref}] ${message}\x1b[0m ${description ? `\n ${description}` : ""} \n`)
|
|
}
|
|
|
|
module.exports = outputServerError |