本文整理汇总了TypeScript中lighthouse-logger.setLevel函数的典型用法代码示例。如果您正苦于以下问题:TypeScript setLevel函数的具体用法?TypeScript setLevel怎么用?TypeScript setLevel使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了setLevel函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: beforeEach
beforeEach(() => {
log.setLevel('error');
});
示例2: afterEach
afterEach(() => {
log.setLevel('');
});
示例3: require
Commands.ListTraceCategories();
}
const url = cliFlags._[0];
let config: Object|null = null;
if (cliFlags.configPath) {
// Resolve the config file path relative to where cli was called.
cliFlags.configPath = path.resolve(process.cwd(), cliFlags.configPath);
config = require(cliFlags.configPath);
} else if (cliFlags.perf) {
config = perfOnlyConfig;
}
// set logging preferences
cliFlags.logLevel = 'info';
if (cliFlags.verbose) {
cliFlags.logLevel = 'verbose';
} else if (cliFlags.quiet) {
cliFlags.logLevel = 'silent';
}
log.setLevel(cliFlags.logLevel);
if (cliFlags.output === Printer.OutputMode[Printer.OutputMode.json] && !cliFlags.outputPath) {
cliFlags.outputPath = 'stdout';
}
export function run() {
return runLighthouse(url, cliFlags, config);
}