Skip to content

Commit

Permalink
Handle browserify-ignored module result for etw logger (microsoft#33225)
Browse files Browse the repository at this point in the history
  • Loading branch information
weswigham authored and timsuchanek committed Sep 11, 2019
1 parent 7f1ec9b commit 31c8659
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compiler/perfLogger.ts
Expand Up @@ -36,8 +36,8 @@ namespace ts {
etwModule = undefined;
}

/** Performance logger that will generate ETW events if possible */
export const perfLogger: PerfLogger = etwModule ? etwModule : nullLogger;
/** 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;

perfLogger.logInfoEvent(`Starting TypeScript v${versionMajorMinor} with command line: ${JSON.stringify(process.argv)}`);
}

0 comments on commit 31c8659

Please sign in to comment.