mirror of
https://github.com/osmarks/random-stuff
synced 2024-10-31 19:06:15 +00:00
11 lines
428 B
TypeScript
11 lines
428 B
TypeScript
|
import chalk from "chalk"
|
||
|
import { format } from "date-fns"
|
||
|
|
||
|
const rawLog = (level, main) => {
|
||
|
const timestamp = format(new Date(), "HH:mm:ss")
|
||
|
console.log(chalk`{bold ${timestamp}} ${level} ${main}`)
|
||
|
}
|
||
|
|
||
|
export const info = x => rawLog(chalk.black.bgBlueBright("INFO"), x)
|
||
|
export const warning = x => rawLog(chalk.black.bgKeyword("orange")("WARN"), x)
|
||
|
export const error = x => rawLog(chalk.black.bgRedBright("FAIL"), x)
|