pandoras-box
Version:
A small and simple stress testing tool for Ethereum-compatible blockchain networks
25 lines (24 loc) • 696 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const chalk_1 = __importDefault(require("chalk"));
class Logger {
static info(s) {
console.log(s);
}
static title(s) {
console.log(chalk_1.default.blue(s));
}
static warn(s) {
console.log(chalk_1.default.yellow(`⚠️️ ${s}`));
}
static success(s) {
console.log(chalk_1.default.green(`✅ ${s}`));
}
static error(s) {
console.log(chalk_1.default.red(`⛔️ ${s}`));
}
}
exports.default = Logger;