73 lines
No EOL
1.7 KiB
TypeScript
73 lines
No EOL
1.7 KiB
TypeScript
import * as dyetty from "dyetty";
|
|
|
|
enum LogType {
|
|
INFO,
|
|
WARN,
|
|
ERROR
|
|
};
|
|
|
|
const LogTags = {
|
|
INFO: dyetty.bgGreen(dyetty.black(" INFO ")),
|
|
BANCHO: dyetty.bgMagenta(dyetty.black(" BANCHO ")),
|
|
WEBREQ: dyetty.bgGreen(dyetty.black(" WEBREQ ")),
|
|
CHAT: dyetty.bgCyan(dyetty.black(" CHAT ")),
|
|
WARN: dyetty.bgYellow(dyetty.black(" WARN ")),
|
|
ERROR: dyetty.bgRed(" ERRR "),
|
|
REDIS: dyetty.bgRed(dyetty.white(" bREDIS ")),
|
|
STREAM: dyetty.bgBlue(dyetty.black(" STREAM "))
|
|
} as const;
|
|
|
|
function correctValue(i:number) : string {
|
|
if (i <= 9) return `0${i}`;
|
|
else return i.toString();
|
|
}
|
|
|
|
function getTime() : string {
|
|
const time = new Date();
|
|
return dyetty.green(`[${correctValue(time.getHours())}:${correctValue(time.getMinutes())}:${correctValue(time.getSeconds())}]`);
|
|
}
|
|
|
|
function log(tag:string, log:string, logType:LogType = LogType.INFO) : void {
|
|
switch (logType) {
|
|
case LogType.INFO:
|
|
return console.log(`${getTime()} ${tag} ${log}`);
|
|
case LogType.WARN:
|
|
return console.warn(`${getTime()} ${tag} ${log}`);
|
|
case LogType.ERROR:
|
|
return console.error(`${getTime()} ${tag} ${log}`);
|
|
}
|
|
}
|
|
|
|
export class ConsoleHelper {
|
|
public static printWebReq(s:string) : void {
|
|
log(LogTags.WEBREQ, s);
|
|
}
|
|
|
|
public static printStream(s:string) : void {
|
|
log(LogTags.STREAM, s);
|
|
}
|
|
|
|
public static printInfo(s:string) : void {
|
|
log(LogTags.INFO, s);
|
|
}
|
|
|
|
public static printBancho(s:string) : void {
|
|
log(LogTags.BANCHO, s);
|
|
}
|
|
|
|
public static printRedis(s:string) : void {
|
|
log(LogTags.REDIS, s);
|
|
}
|
|
|
|
public static printChat(s:string) : void {
|
|
log(LogTags.CHAT, s);
|
|
}
|
|
|
|
public static printWarn(s:string) : void {
|
|
log(LogTags.WARN, s);
|
|
}
|
|
|
|
public static printError(s:string) : void {
|
|
log(LogTags.ERROR, s);
|
|
}
|
|
} |