2.1.0 • Published 1 year ago

dd-logger v2.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

dd-logger

SampleCode

//es module
import { Logger } from "dd-logger";
//
const { Logger } = require("dd-logger");

const logger = new Logger();

const channel = logger.createChannel("main");
channel.debug("debug");
channel.warn("warn");
//[nowTime][main] [DEBUG] debug
//[nowTime][main] [WARN] warn

const channel2 = logger.createChannel("sub");
channel2.info("info");
channel2.error("error");
//[nowTime][sub] [INFO] info
//[nowTime][sub] [ERROR] error

const childChannel = channel.createChannel("child");
childChannel.info("info");
//[nowTime][main][child] [INFO] info
//[nowTime][main][child] [ERROR] error

API

Option (OptionParam) interface

levels: Array\

//default
["fatal", "error", "warn", "info", "debug"]

timeFormat: Function => string

//default
function padZero(num: number, length: number) {
    return num.toString().padStart(length, "0");
}
(d: Date) => `${padZero(d.getHours(), 2)}:${padZero(d.getMinutes(), 2)}:${padZero(d.getSeconds(), 2)}`

writeLog: Function => any

//default
(data: messageData) => {
    const { lineText, level, time, location } = data;
    console.log(`[${time}][${location.join("][")}] [${level}] ${lineText}`);
    return true;
}

//example
(data: messageData) => {
    const { lineText, level, time, location } = data;
    console.log(`[${time}][${location.join("][")}] [${level}] ${lineText}`);
    return fs.appendFile(`./log/${location.join("/")}/${level}.txt`, `[${time}] ${lineText}\n`);
}

Logger class constructor(option?: OptionParam) -> Logger

setOption(option: OptionParam) -> Option

createChannel(location: string) -> Channel

channels -> Array\

Channel class logger -> Logger

childs -> Array\

createChild(location: string) -> Channel

level -> Function(lineText) => returnOption.writeLog

2.1.0

1 year ago

2.0.2

1 year ago

0.0.0

1 year ago

2.0.1

1 year ago

2.0.0

1 year ago

1.0.0

1 year ago