UNPKG

@sap/cli-core

Version:

Command-Line Interface (CLI) Core Module

13 lines (12 loc) 432 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.logVerbose = void 0; const constants_1 = require("../constants"); const options_1 = require("../utils/options"); const logVerbose = (logger, ...args) => { const verbose = (0, options_1.getOptionValueFromConfigGracefully)(constants_1.OPTION_VERBOSE); if (verbose) { logger.output(...args); } }; exports.logVerbose = logVerbose;