frpc-desktop/electron/core/Logger.ts

18 lines
299 B
TypeScript
Raw Normal View History

import log from "electron-log";
class Logger {
static {
log.transports.file.level = "debug";
log.transports.console.level = "debug";
}
static info(msg: string) {}
static debug(msg: string) {}
static warn(msg: string) {}
static error(msg: string) {}
}
export default Logger;