mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-18 03:39:29 +00:00
10 lines
120 B
TypeScript
10 lines
120 B
TypeScript
import pino from "pino";
|
|
|
|
const logger = pino({
|
|
prettyPrint: {
|
|
ignore: "pid,hostname"
|
|
}
|
|
});
|
|
|
|
export { logger };
|