Skip to content

Commit

Permalink
Handle browserify-ignored module result for etw logger (#33225)
Browse files Browse the repository at this point in the history
  • Loading branch information
weswigham committed Sep 4, 2019
1 parent c06fd14 commit f8f8876
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 f8f8876

Please sign in to comment.