Remove redundant and misplaced perfLogger startup statement (#34551)

This commit is contained in:
Michael Crane
2019-10-18 09:13:40 -07:00
committed by Andrew Branch
parent 82f927f8dd
commit 0fc388893e

View File

@@ -38,6 +38,4 @@ namespace ts {
/** Performance logger that will generate ETW events if possible - check for `logEvent` member, as `etwModule` will be `{}` when browserified */
export const perfLogger: PerfLogger = etwModule && etwModule.logEvent ? etwModule : nullLogger;
const args = typeof process === "undefined" ? [] : process.argv;
perfLogger.logInfoEvent(`Starting TypeScript v${versionMajorMinor} with command line: ${JSON.stringify(args)}`);
}