@gatling.io/cli
Version:
Gatling JS is a JavaScript/TypeScript interface for the [Gatling load testing tool](https://gatling.io/).
14 lines (13 loc) • 384 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.logger = void 0;
const debug =
// On Node.js, console.debug is just an alias to console.log, so we handle debug level ourselves
process.env["DEBUG"] === "true" ? console.debug : () => { };
const info = console.info;
const error = console.error;
exports.logger = {
debug,
info,
error
};