3xworkaround
Version:
This is an interface for 3x-ui panel. It will help developers to create, edit and delete inbounds and clients in a simple way.
21 lines (20 loc) • 591 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.colorizeFormat = void 0;
const winston_1 = __importDefault(require("winston"));
exports.colorizeFormat = winston_1.default.format.colorize({
message: true,
level: true,
colors: {
info: "blue",
error: "red",
warn: "yellow",
debug: "cyan",
verbose: "white",
http: "magenta",
silly: "gray",
},
});