1
0
mirror of https://github.com/osmarks/random-stuff synced 2024-09-07 21:16:47 +00:00
random-stuff/log.ts
2020-08-12 20:31:12 +01:00

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)