本文整理汇总了TypeScript中@angular-devkit/core.logging.IndentLogger类的典型用法代码示例。如果您正苦于以下问题:TypeScript logging.IndentLogger类的具体用法?TypeScript logging.IndentLogger怎么用?TypeScript logging.IndentLogger使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了logging.IndentLogger类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
export default async function(options: { testing?: boolean, cliArgs: string[] }) {
const commands = loadCommands();
const logger = new logging.IndentLogger('cling');
let loggingSubscription;
if (!options.testing) {
loggingSubscription = initializeLogging(logger);
}
let projectDetails = getProjectDetails();
if (projectDetails === null) {
projectDetails = { root: process.cwd() };
}
const context = {
project: projectDetails,
};
try {
const maybeExitCode = await runCommand(commands, options.cliArgs, logger, context);
if (typeof maybeExitCode === 'number') {
console.assert(Number.isInteger(maybeExitCode));
return maybeExitCode;
}
return 0;
} catch (err) {
if (err instanceof Error) {
logger.fatal(err.message);
if (err.stack) {
logger.fatal(err.stack);
}
} else if (typeof err === 'string') {
logger.fatal(err);
} else if (typeof err === 'number') {
// Log nothing.
} else {
logger.fatal('An unexpected error occured: ' + JSON.stringify(err));
}
if (options.testing) {
debugger;
throw err;
}
if (loggingSubscription) {
loggingSubscription.unsubscribe();
}
return 1;
}
}
示例2: function
export default async function(options: any) {
// ensure the environemnt variable for dynamic paths
process.env.PWD = path.normalize(process.env.PWD || process.cwd());
process.env.CLI_ROOT = process.env.CLI_ROOT || path.resolve(__dirname, '..', '..');
const commands = loadCommands();
const logger = new logging.IndentLogger('cling');
let loggingSubscription;
if (!options.testing) {
loggingSubscription = initializeLogging(logger);
}
const context = {
project: Project.projectOrnullProject(undefined, undefined),
};
try {
const maybeExitCode = await runCommand(commands, options.cliArgs, logger, context);
if (typeof maybeExitCode === 'number') {
console.assert(Number.isInteger(maybeExitCode));
return maybeExitCode;
}
return 0;
} catch (err) {
if (err instanceof Error) {
logger.fatal(err.message);
logger.fatal(err.stack);
} else if (typeof err === 'string') {
logger.fatal(err);
} else if (typeof err === 'number') {
// Log nothing.
} else {
logger.fatal('An unexpected error occured: ' + JSON.stringify(err));
}
if (options.testing) {
debugger;
throw err;
}
loggingSubscription.unsubscribe();
return 1;
}
}
示例3:
export const defaultReporter = (logger: logging.Logger): BenchmarkReporter => (process, groups) => {
const toplevelLogger = logger;
const indentLogger = new logging.IndentLogger('benchmark-indent-logger', toplevelLogger);
const formatMetric = (metric: Metric | AggregatedMetric) => tags.oneLine`
${metric.name}: ${metric.value.toFixed(2)} ${metric.unit}
${metric.componentValues ? `(${metric.componentValues.map(v => v.toFixed(2)).join(', ')})` : ''}
`;
groups.forEach(group => {
toplevelLogger.info(`${group.name}`);
group.metrics.forEach(metric => indentLogger.info(formatMetric(metric)));
});
};
示例4: function
export default async function(options: { testing?: boolean, cliArgs: string[] }) {
const logger = new logging.IndentLogger('cling');
let loggingSubscription;
if (!options.testing) {
loggingSubscription = initializeLogging(logger);
}
let projectDetails = getWorkspaceDetails();
if (projectDetails === null) {
const [, localPath] = getWorkspaceRaw('local');
if (localPath !== null) {
logger.fatal(`An invalid configuration file was found ['${localPath}'].`
+ ' Please delete the file before running the command.');
return 1;
}
projectDetails = { root: process.cwd() };
}
try {
const maybeExitCode = await runCommand(options.cliArgs, logger, projectDetails);
if (typeof maybeExitCode === 'number') {
console.assert(Number.isInteger(maybeExitCode));
return maybeExitCode;
}
return 0;
} catch (err) {
if (err instanceof Error) {
logger.fatal(err.message);
if (err.stack) {
logger.fatal(err.stack);
}
} else if (typeof err === 'string') {
logger.fatal(err);
} else if (typeof err === 'number') {
// Log nothing.
} else {
logger.fatal('An unexpected error occurred: ' + JSON.stringify(err));
}
if (options.testing) {
debugger;
throw err;
}
if (loggingSubscription) {
loggingSubscription.unsubscribe();
}
return 1;
}
}
示例5: minimist
import { logging } from '@angular-devkit/core';
import chalk from 'chalk';
import * as minimist from 'minimist';
import {filter} from 'rxjs/operators';
const { bold, red, yellow, white } = chalk;
const argv = minimist(process.argv.slice(2), {
boolean: ['verbose']
});
const rootLogger = new logging.IndentLogger('cling');
rootLogger
.pipe(filter(entry => (entry.level != 'debug' || argv['verbose'])))
.subscribe(entry => {
let color: (s: string) => string = white;
let output = process.stdout;
switch (entry.level) {
case 'info': color = white; break;
case 'warn': color = yellow; break;
case 'error': color = red; output = process.stderr; break;
case 'fatal': color = (x: string) => bold(red(x)); output = process.stderr; break;
}
output.write(color(entry.message) + '\n');
});
rootLogger