@labnex/cli
Version:
CLI for Labnex, an AI-Powered Testing Automation Platform
10 lines • 359 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.addLog = addLog;
function addLog(message, data) {
const logMessage = data ? `${message} ${JSON.stringify(data)}` : message;
if (process.env.LABNEX_VERBOSE === 'true') {
console.log(`[TestStepParser] ${logMessage}`);
}
}
//# sourceMappingURL=addLog.js.map