/ packages / utils / logger.ts
logger.ts
 1  // import this file to enable basic logging to the console
 2  import { configure, getConsoleSink } from "@logtape/logtape";
 3  
 4  await configure({
 5    sinks: {
 6      console: getConsoleSink(),
 7    },
 8    loggers: [
 9      {
10        category: "mass-market",
11        sinks: ["console"],
12      },
13    ],
14  });