mirror of
https://github.com/caprover/caprover
synced 2026-05-06 03:30:29 +00:00
17 lines
370 B
JavaScript
Executable File
17 lines
370 B
JavaScript
Executable File
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
class Logger {
|
|
static log(s) {
|
|
console.log(s);
|
|
}
|
|
static error(s) {
|
|
console.error(s);
|
|
}
|
|
static dev(s) {
|
|
if (process.env.CLI_IS_DEBUG) {
|
|
console.log(">>> ", s);
|
|
}
|
|
}
|
|
}
|
|
exports.default = Logger;
|
|
//# sourceMappingURL=Logger.js.map
|