Files
reacord/packages/reacord/helpers/log-pretty.ts
MapleLeaf 88e9919c8f workspace
2021-12-29 13:19:46 -06:00

13 lines
264 B
TypeScript

import { inspect } from "node:util"
// eslint-disable-next-line import/no-unused-modules
export function logPretty(value: unknown) {
console.info(
inspect(value, {
// depth: Number.POSITIVE_INFINITY,
depth: 10,
colors: true,
}),
)
}