@faisalrmdhn08/allin-cli
Version:
A modern full-stack CLI tool based on Typescript designed to accelerate your app development process — setup your entire stack in one seamless command.
18 lines (16 loc) • 528 B
text/typescript
// import winston, { Logger } from "winston";
// const logger: Logger = winston.createLogger({
// level: "info",
// format: winston.format.combine(
// winston.format.colorize(),
// winston.format.timestamp(),
// winston.format.printf(({ timestamp, level, message }) => {
// return `[${timestamp}] ${level}: ${message}`;
// })
// ),
// transports: [
// new winston.transports.Console(),
// new winston.transports.File({ filename: "logs/app.log" }),
// ],
// });
// export default logger;