8 lines
310 B
JavaScript
8 lines
310 B
JavaScript
import { logger } from "./logger";
|
|
const l = logger({ app: "teste", eProducao: true });
|
|
const lg = l({
|
|
inquilino: "conta_1",
|
|
usuario: "pedrinho",
|
|
});
|
|
lg("error", "Deu Ruim").then((a) => console.log(JSON.stringify(a)));
|
|
lg("info", "Deu Bom", { __filename }).then((a) => console.log(JSON.stringify(a)));
|