UNPKG

@koreanpanda/log-system

Version:

A Custom Logger that can print to the console, however you like, and writes logs for you as well.

11 lines (8 loc) 239 B
const LogSystem = require("../../../src/Logger"); const logger = new LogSystem(); console.log('Should not make a config file in this folder.'); module.exports = { writeSomething() { logger.log("Something"); } }