diff --git a/src/performance.ts b/src/performance.ts index 72e7a9255..24a3359b2 100644 --- a/src/performance.ts +++ b/src/performance.ts @@ -199,6 +199,10 @@ export class Performance { oclifDebug('Oclif Time: %sms', Performance.oclifPerf['oclif.runMs'].toFixed(4)) oclifDebug('Init Time: %sms', Performance.oclifPerf['oclif.initMs'].toFixed(4)) oclifDebug('Config Load Time: %sms', Performance.oclifPerf['oclif.configLoadMs'].toFixed(4)) + oclifDebug( + ' • Root Plugin Load Time: %sms', + Performance.getResult(OCLIF_MARKER_OWNER, 'plugin.load#root')?.duration.toFixed(4) ?? 0, + ) oclifDebug( ' • Plugins Load Time: %sms', Performance.getResult(OCLIF_MARKER_OWNER, 'config.loadAllPlugins')?.duration.toFixed(4) ?? 0,